diff options
author | Ron Economos <w6rz@comcast.net> | 2020-11-10 13:33:17 -0800 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2020-12-07 02:48:40 -0800 |
commit | 0bf355c912497eebd74f9059e1e55bd8c6547bc2 (patch) | |
tree | a4c811880d04bce3642d64c20b7ca23ea3d34606 /gr-vocoder/lib/freedv_rx_ss_impl.h | |
parent | a3061b8fe69fb8407d52d7f43cae57796015d185 (diff) |
build: Remove clang unused variable warnings.
Diffstat (limited to 'gr-vocoder/lib/freedv_rx_ss_impl.h')
-rw-r--r-- | gr-vocoder/lib/freedv_rx_ss_impl.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gr-vocoder/lib/freedv_rx_ss_impl.h b/gr-vocoder/lib/freedv_rx_ss_impl.h index 6a6c8a55b9..4161321af6 100644 --- a/gr-vocoder/lib/freedv_rx_ss_impl.h +++ b/gr-vocoder/lib/freedv_rx_ss_impl.h @@ -19,30 +19,22 @@ namespace vocoder { class freedv_rx_ss_impl : public freedv_rx_ss { private: - short* d_speech_out; - short* d_demod_in; struct freedv* d_freedv; - int d_nin, d_nout, d_frame; + int d_nin, d_nout; std::string d_rx_str; static void put_next_rx_char(void* callback_state, char c); const pmt::pmt_t d_port; struct MODEM_STATS d_stats; - int d_mode; int d_sync; - int d_total_bits; int d_total_bit_errors; float d_snr_est; float d_squelch_thresh; bool d_squelch_en; int d_speech_samples; int d_max_modem_samples; - float d_clock_offset; - int d_use_codecrx; - int d_interleave_frames; #ifdef FREEDV_MODE_700D struct freedv_advanced d_adv; #endif - struct CODEC2* d_c2 = NULL; public: freedv_rx_ss_impl(int mode, float squelch_thresh, int interleave_frames); |