diff options
Diffstat (limited to 'gr-cvsd-vocoder/src/lib')
-rw-r--r-- | gr-cvsd-vocoder/src/lib/cvsd_decode_bs.cc | 4 | ||||
-rw-r--r-- | gr-cvsd-vocoder/src/lib/cvsd_encode_sb.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gr-cvsd-vocoder/src/lib/cvsd_decode_bs.cc b/gr-cvsd-vocoder/src/lib/cvsd_decode_bs.cc index 1dad15d43..26dcb29da 100644 --- a/gr-cvsd-vocoder/src/lib/cvsd_decode_bs.cc +++ b/gr-cvsd-vocoder/src/lib/cvsd_decode_bs.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2010 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -42,7 +42,7 @@ cvsd_make_decode_bs (short min_step, short max_step, double step_decay, double accum_decay, int K, int J, short pos_accum_max, short neg_accum_max) { - return cvsd_decode_bs_sptr (new cvsd_decode_bs (min_step, max_step, + return gnuradio::get_initial_sptr(new cvsd_decode_bs (min_step, max_step, step_decay, accum_decay, K, J, pos_accum_max, neg_accum_max)); } diff --git a/gr-cvsd-vocoder/src/lib/cvsd_encode_sb.cc b/gr-cvsd-vocoder/src/lib/cvsd_encode_sb.cc index 561b91c68..df867f3ba 100644 --- a/gr-cvsd-vocoder/src/lib/cvsd_encode_sb.cc +++ b/gr-cvsd-vocoder/src/lib/cvsd_encode_sb.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2010 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -42,7 +42,7 @@ cvsd_make_encode_sb (short min_step, short max_step, double step_decay, double accum_decay, int K, int J, short pos_accum_max, short neg_accum_max) { - return cvsd_encode_sb_sptr (new cvsd_encode_sb (min_step, max_step, + return gnuradio::get_initial_sptr(new cvsd_encode_sb (min_step, max_step, step_decay, accum_decay, K, J, pos_accum_max, neg_accum_max)); } |