diff options
author | Josh Blum | 2011-07-22 10:33:13 -0700 |
---|---|---|
committer | Josh Blum | 2011-07-22 10:33:13 -0700 |
commit | ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132 (patch) | |
tree | 0aafe7f48bd6552cda48dd726b20ef70c305e3f9 /gr-vocoder/include/vocoder_cvsd_decode_bs.h | |
parent | d760edf9fb851d97c972a69690b26114dd998157 (diff) | |
download | gnuradio-ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132.tar.gz gnuradio-ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132.tar.bz2 gnuradio-ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132.zip |
gr: added API macros for noaa and pager, also renamed the ones for digital and vocoder to be consistent
Diffstat (limited to 'gr-vocoder/include/vocoder_cvsd_decode_bs.h')
-rw-r--r-- | gr-vocoder/include/vocoder_cvsd_decode_bs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-vocoder/include/vocoder_cvsd_decode_bs.h b/gr-vocoder/include/vocoder_cvsd_decode_bs.h index 48b92d8cf..1204e298b 100644 --- a/gr-vocoder/include/vocoder_cvsd_decode_bs.h +++ b/gr-vocoder/include/vocoder_cvsd_decode_bs.h @@ -23,7 +23,7 @@ #ifndef INCLUDED_VOCODER_CVSD_DECODE_BS_H #define INCLUDED_VOCODER_CVSD_DECODE_BS_H -#include <gr_vocoder_api.h> +#include <vocoder_api.h> #include <gr_sync_interpolator.h> class vocoder_cvsd_decode_bs; @@ -45,7 +45,7 @@ typedef boost::shared_ptr<vocoder_cvsd_decode_bs> vocoder_cvsd_decode_bs_sptr; * \param neg_accum_max Minimum integer value allowed for the internal reference. Default: "-32767" (-2^15 + 1 or MINSHORT+1) * */ -GR_VOCODER_API vocoder_cvsd_decode_bs_sptr vocoder_make_cvsd_decode_bs (short min_step=10, +VOCODER_API vocoder_cvsd_decode_bs_sptr vocoder_make_cvsd_decode_bs (short min_step=10, short max_step=1280, double step_decay=0.9990234375, double accum_decay= 0.96875, @@ -106,10 +106,10 @@ GR_VOCODER_API vocoder_cvsd_decode_bs_sptr vocoder_make_cvsd_decode_bs (short mi * */ -class GR_VOCODER_API vocoder_cvsd_decode_bs : public gr_sync_interpolator +class VOCODER_API vocoder_cvsd_decode_bs : public gr_sync_interpolator { private: - friend GR_VOCODER_API vocoder_cvsd_decode_bs_sptr vocoder_make_cvsd_decode_bs (short min_step, + friend VOCODER_API vocoder_cvsd_decode_bs_sptr vocoder_make_cvsd_decode_bs (short min_step, short max_step, double step_decay, double accum_decay, |