summaryrefslogtreecommitdiff
path: root/gr-vocoder/lib/cvsd_encode_sb_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-vocoder/lib/cvsd_encode_sb_impl.h')
-rw-r--r--gr-vocoder/lib/cvsd_encode_sb_impl.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gr-vocoder/lib/cvsd_encode_sb_impl.h b/gr-vocoder/lib/cvsd_encode_sb_impl.h
index ea6ab4e427..12bc4bb658 100644
--- a/gr-vocoder/lib/cvsd_encode_sb_impl.h
+++ b/gr-vocoder/lib/cvsd_encode_sb_impl.h
@@ -61,16 +61,16 @@ public:
int J = 4,
short pos_accum_max = 32767,
short neg_accum_max = -32767);
- ~cvsd_encode_sb_impl();
+ ~cvsd_encode_sb_impl() override;
- short min_step() { return d_min_step; }
- short max_step() { return d_max_step; }
- double step_decay() { return d_step_decay; }
- double accum_decay() { return d_accum_decay; }
- int K() { return d_K; }
- int J() { return d_J; }
- short pos_accum_max() { return d_pos_accum_max; }
- short neg_accum_max() { return d_neg_accum_max; }
+ short min_step() override { return d_min_step; }
+ short max_step() override { return d_max_step; }
+ double step_decay() override { return d_step_decay; }
+ double accum_decay() override { return d_accum_decay; }
+ int K() override { return d_K; }
+ int J() override { return d_J; }
+ short pos_accum_max() override { return d_pos_accum_max; }
+ short neg_accum_max() override { return d_neg_accum_max; }
int work(int noutput_items,
gr_vector_const_void_star& input_items,