mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-31 11:19:18 +00:00
Use variable instead of function in constructor
This commit is contained in:
parent
f752e790eb
commit
52b2b8b9d8
@ -179,7 +179,7 @@ FileSignalSource::FileSignalSource(ConfigurationInterface* configuration,
|
|||||||
if (file.is_open())
|
if (file.is_open())
|
||||||
{
|
{
|
||||||
size = file.tellg();
|
size = file.tellg();
|
||||||
DLOG(INFO) << "Total samples in the file= " << floor(static_cast<double>(size) / static_cast<double>(item_size()));
|
DLOG(INFO) << "Total samples in the file= " << floor(static_cast<double>(size) / static_cast<double>(item_size_));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -195,7 +195,7 @@ FileSignalSource::FileSignalSource(ConfigurationInterface* configuration,
|
|||||||
{
|
{
|
||||||
int64_t bytes_to_skip = samples_to_skip * item_size_;
|
int64_t bytes_to_skip = samples_to_skip * item_size_;
|
||||||
int64_t bytes_to_process = static_cast<int64_t>(size) - bytes_to_skip;
|
int64_t bytes_to_process = static_cast<int64_t>(size) - bytes_to_skip;
|
||||||
samples_ = floor(static_cast<double>(bytes_to_process) / static_cast<double>(item_size()) - ceil(0.002 * static_cast<double>(sampling_frequency_))); // process all the samples available in the file excluding at least the last 1 ms
|
samples_ = floor(static_cast<double>(bytes_to_process) / static_cast<double>(item_size_) - ceil(0.002 * static_cast<double>(sampling_frequency_))); // process all the samples available in the file excluding at least the last 1 ms
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user