diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-04-10 18:39:45 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-04-10 18:39:45 -0700 |
commit | ddae9468b9f69fcbc91c4f8cbffc0b7d69b79b4c (patch) | |
tree | d2b9422fa68315ff1b001c9fa60baeb6752ae59b /host/lib/usrp/usrp1 | |
parent | 1f41782b564da36e31f41e2561f2778e36986baf (diff) | |
parent | f23e7bcc47f86ffb431aee43abe670e3e5e31647 (diff) | |
download | uhd-ddae9468b9f69fcbc91c4f8cbffc0b7d69b79b4c.tar.gz uhd-ddae9468b9f69fcbc91c4f8cbffc0b7d69b79b4c.tar.bz2 uhd-ddae9468b9f69fcbc91c4f8cbffc0b7d69b79b4c.zip |
Merge branch 'maint'
Diffstat (limited to 'host/lib/usrp/usrp1')
-rw-r--r-- | host/lib/usrp/usrp1/codec_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp1/codec_ctrl.cpp b/host/lib/usrp/usrp1/codec_ctrl.cpp index 2e922a3e2..8ba7b54ca 100644 --- a/host/lib/usrp/usrp1/codec_ctrl.cpp +++ b/host/lib/usrp/usrp1/codec_ctrl.cpp @@ -357,7 +357,7 @@ double usrp1_codec_ctrl_impl::fine_tune(double codec_rate, double target_freq) static const double scale_factor = std::pow(2.0, 24); boost::uint32_t freq_word = boost::uint32_t( - boost::math::round(abs((target_freq / codec_rate) * scale_factor))); + boost::math::round(std::abs((target_freq / codec_rate) * scale_factor))); double actual_freq = freq_word * codec_rate / scale_factor; |