diff options
author | Josh Blum <josh@joshknows.com> | 2011-05-23 13:37:05 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-14 17:27:46 -0700 |
commit | 86f12cd1c1c606bbfbc6f0ddbd98166fe9251a13 (patch) | |
tree | 94cb1723707957dc0ff7288220ff24c6ca6bbb9e /host/include | |
parent | fb85b0c9eb5a50a16e7568140d144650794774de (diff) | |
download | uhd-86f12cd1c1c606bbfbc6f0ddbd98166fe9251a13.tar.gz uhd-86f12cd1c1c606bbfbc6f0ddbd98166fe9251a13.tar.bz2 uhd-86f12cd1c1c606bbfbc6f0ddbd98166fe9251a13.zip |
uhd: added scaling factor to conversion routines
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/convert.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/convert.hpp b/host/include/uhd/convert.hpp index 8fc2f38db..99f1860ae 100644 --- a/host/include/uhd/convert.hpp +++ b/host/include/uhd/convert.hpp @@ -29,7 +29,7 @@ namespace uhd{ namespace convert{ typedef uhd::ref_vector<void *> output_type; typedef uhd::ref_vector<const void *> input_type; - typedef boost::function<void(const input_type&, const output_type&, size_t)> function_type; + typedef boost::function<void(const input_type&, const output_type&, size_t, double)> function_type; /*! * Describe the priority of a converter function. |