summaryrefslogtreecommitdiff
path: root/gr-vocoder
diff options
context:
space:
mode:
Diffstat (limited to 'gr-vocoder')
-rw-r--r--gr-vocoder/include/vocoder/alaw_decode_bs.h4
-rw-r--r--gr-vocoder/include/vocoder/alaw_encode_sb.h4
-rw-r--r--gr-vocoder/include/vocoder/api.h2
-rw-r--r--gr-vocoder/include/vocoder/codec2_decode_ps.h4
-rw-r--r--gr-vocoder/include/vocoder/codec2_encode_sp.h4
-rw-r--r--gr-vocoder/include/vocoder/cvsd_decode_bs.h4
-rw-r--r--gr-vocoder/include/vocoder/cvsd_encode_sb.h4
-rw-r--r--gr-vocoder/include/vocoder/g721_decode_bs.h4
-rw-r--r--gr-vocoder/include/vocoder/g721_encode_sb.h4
-rw-r--r--gr-vocoder/include/vocoder/g723_24_decode_bs.h4
-rw-r--r--gr-vocoder/include/vocoder/g723_24_encode_sb.h4
-rw-r--r--gr-vocoder/include/vocoder/g723_40_decode_bs.h4
-rw-r--r--gr-vocoder/include/vocoder/g723_40_encode_sb.h4
-rw-r--r--gr-vocoder/include/vocoder/gsm_fr_decode_ps.h4
-rw-r--r--gr-vocoder/include/vocoder/gsm_fr_encode_sp.h4
-rw-r--r--gr-vocoder/include/vocoder/ulaw_decode_bs.h4
-rw-r--r--gr-vocoder/include/vocoder/ulaw_encode_sb.h4
-rw-r--r--gr-vocoder/lib/alaw_decode_bs_impl.cc8
-rw-r--r--gr-vocoder/lib/alaw_encode_sb_impl.cc8
-rw-r--r--gr-vocoder/lib/codec2_decode_ps_impl.cc8
-rw-r--r--gr-vocoder/lib/codec2_encode_sp_impl.cc8
-rw-r--r--gr-vocoder/lib/cvsd_decode_bs_impl.cc8
-rw-r--r--gr-vocoder/lib/cvsd_encode_sb_impl.cc8
-rw-r--r--gr-vocoder/lib/g721_decode_bs_impl.cc8
-rw-r--r--gr-vocoder/lib/g721_encode_sb_impl.cc8
-rw-r--r--gr-vocoder/lib/g723_24_decode_bs_impl.cc8
-rw-r--r--gr-vocoder/lib/g723_24_encode_sb_impl.cc8
-rw-r--r--gr-vocoder/lib/g723_40_decode_bs_impl.cc8
-rw-r--r--gr-vocoder/lib/g723_40_encode_sb_impl.cc8
-rw-r--r--gr-vocoder/lib/gsm_fr_decode_ps_impl.cc8
-rw-r--r--gr-vocoder/lib/gsm_fr_encode_sp_impl.cc8
-rw-r--r--gr-vocoder/lib/ulaw_decode_bs_impl.cc8
-rw-r--r--gr-vocoder/lib/ulaw_encode_sb_impl.cc8
33 files changed, 97 insertions, 97 deletions
diff --git a/gr-vocoder/include/vocoder/alaw_decode_bs.h b/gr-vocoder/include/vocoder/alaw_decode_bs.h
index 9966512c2a..f1860c6f77 100644
--- a/gr-vocoder/include/vocoder/alaw_decode_bs.h
+++ b/gr-vocoder/include/vocoder/alaw_decode_bs.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_ALAW_DECODE_BS_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs alaw audio decoding.
* \ingroup audio_blk
*/
- class VOCODER_API alaw_decode_bs : virtual public gr_sync_block
+ class VOCODER_API alaw_decode_bs : virtual public sync_block
{
public:
// gr::vocoder::alaw_decode_bs::sptr
diff --git a/gr-vocoder/include/vocoder/alaw_encode_sb.h b/gr-vocoder/include/vocoder/alaw_encode_sb.h
index e944a93455..dc09c072af 100644
--- a/gr-vocoder/include/vocoder/alaw_encode_sb.h
+++ b/gr-vocoder/include/vocoder/alaw_encode_sb.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_ALAW_ENCODER_SB_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g.711 alaw audio encoding.
* \ingroup audio_blk
*/
- class VOCODER_API alaw_encode_sb : virtual public gr_sync_block
+ class VOCODER_API alaw_encode_sb : virtual public sync_block
{
public:
// gr::vocoder::alaw_encode_sb::sptr
diff --git a/gr-vocoder/include/vocoder/api.h b/gr-vocoder/include/vocoder/api.h
index 613a19f4bc..425e397b9d 100644
--- a/gr-vocoder/include/vocoder/api.h
+++ b/gr-vocoder/include/vocoder/api.h
@@ -22,7 +22,7 @@
#ifndef INCLUDED_VOCODER_API_H
#define INCLUDED_VOCODER_API_H
-#include <attributes.h>
+#include <gnuradio/attributes.h>
#ifdef gnuradio_vocoder_EXPORTS
# define VOCODER_API __GR_ATTR_EXPORT
diff --git a/gr-vocoder/include/vocoder/codec2_decode_ps.h b/gr-vocoder/include/vocoder/codec2_decode_ps.h
index 9c0d1526b8..471e7add81 100644
--- a/gr-vocoder/include/vocoder/codec2_decode_ps.h
+++ b/gr-vocoder/include/vocoder/codec2_decode_ps.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_CODEC2_DECODE_PS_H
#include <vocoder/api.h>
-#include <gr_sync_interpolator.h>
+#include <gnuradio/sync_interpolator.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief CODEC2 Vocoder Decoder
* \ingroup audio_blk
*/
- class VOCODER_API codec2_decode_ps : virtual public gr_sync_interpolator
+ class VOCODER_API codec2_decode_ps : virtual public sync_interpolator
{
public:
// gr::vocoder::codec2_decode_ps::sptr
diff --git a/gr-vocoder/include/vocoder/codec2_encode_sp.h b/gr-vocoder/include/vocoder/codec2_encode_sp.h
index 2960bee04b..525fee5daf 100644
--- a/gr-vocoder/include/vocoder/codec2_encode_sp.h
+++ b/gr-vocoder/include/vocoder/codec2_encode_sp.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_CODEC2_ENCODE_SP_H
#include <vocoder/api.h>
-#include <gr_sync_decimator.h>
+#include <gnuradio/sync_decimator.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief CODEC2 Vocoder Encoder
* \ingroup audio_blk
*/
- class VOCODER_API codec2_encode_sp : virtual public gr_sync_decimator
+ class VOCODER_API codec2_encode_sp : virtual public sync_decimator
{
public:
// gr::vocoder::codec2_encode_sp::sptr
diff --git a/gr-vocoder/include/vocoder/cvsd_decode_bs.h b/gr-vocoder/include/vocoder/cvsd_decode_bs.h
index 03dedffbbd..882e5e7ddc 100644
--- a/gr-vocoder/include/vocoder/cvsd_decode_bs.h
+++ b/gr-vocoder/include/vocoder/cvsd_decode_bs.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_CVSD_DECODE_BS_H
#include <vocoder/api.h>
-#include <gr_sync_interpolator.h>
+#include <gnuradio/sync_interpolator.h>
namespace gr {
namespace vocoder {
@@ -83,7 +83,7 @@ namespace gr {
* Bluetooth Voice Simulink� Model, Available:
* http://www.mathworks.com/company/newsletters/digest/nov01/bluetooth.html
*/
- class VOCODER_API cvsd_decode_bs : virtual public gr_sync_interpolator
+ class VOCODER_API cvsd_decode_bs : virtual public sync_interpolator
{
public:
// gr::vocoder::cvsd_decode_bs::sptr
diff --git a/gr-vocoder/include/vocoder/cvsd_encode_sb.h b/gr-vocoder/include/vocoder/cvsd_encode_sb.h
index c12269562e..40f2eb2a6c 100644
--- a/gr-vocoder/include/vocoder/cvsd_encode_sb.h
+++ b/gr-vocoder/include/vocoder/cvsd_encode_sb.h
@@ -23,7 +23,7 @@
#define INCLUDED_VOCODER_CVSD_ENCODER_SB_H
#include <vocoder/api.h>
-#include <gr_sync_decimator.h>
+#include <gnuradio/sync_decimator.h>
namespace gr {
namespace vocoder {
@@ -84,7 +84,7 @@ namespace gr {
* Bluetooth Voice Simulink� Model, Available:
* http://www.mathworks.com/company/newsletters/digest/nov01/bluetooth.html
*/
- class VOCODER_API cvsd_encode_sb : virtual public gr_sync_decimator
+ class VOCODER_API cvsd_encode_sb : virtual public sync_decimator
{
public:
// gr::vocoder::cvsd_encode_sb::sptr
diff --git a/gr-vocoder/include/vocoder/g721_decode_bs.h b/gr-vocoder/include/vocoder/g721_decode_bs.h
index 05459ccb3d..ab72240df1 100644
--- a/gr-vocoder/include/vocoder/g721_decode_bs.h
+++ b/gr-vocoder/include/vocoder/g721_decode_bs.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_G721_DECODE_BS_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g721 audio decoding.
* \ingroup audio_blk
*/
- class VOCODER_API g721_decode_bs : virtual public gr_sync_block
+ class VOCODER_API g721_decode_bs : virtual public sync_block
{
public:
// gr::vocoder::g721_decode_bs::sptr
diff --git a/gr-vocoder/include/vocoder/g721_encode_sb.h b/gr-vocoder/include/vocoder/g721_encode_sb.h
index af03b855c3..1445a36c60 100644
--- a/gr-vocoder/include/vocoder/g721_encode_sb.h
+++ b/gr-vocoder/include/vocoder/g721_encode_sb.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_G721_ENCODE_SB_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g721 audio encoding.
* \ingroup audio_blk
*/
- class VOCODER_API g721_encode_sb : virtual public gr_sync_block
+ class VOCODER_API g721_encode_sb : virtual public sync_block
{
public:
// gr::vocoder::g721_encode_sb::sptr
diff --git a/gr-vocoder/include/vocoder/g723_24_decode_bs.h b/gr-vocoder/include/vocoder/g723_24_decode_bs.h
index e91354071d..0d64946058 100644
--- a/gr-vocoder/include/vocoder/g723_24_decode_bs.h
+++ b/gr-vocoder/include/vocoder/g723_24_decode_bs.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_G723_24_DECODE_BS_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g723_24 audio decoding.
* \ingroup audio_blk
*/
- class VOCODER_API g723_24_decode_bs : virtual public gr_sync_block
+ class VOCODER_API g723_24_decode_bs : virtual public sync_block
{
public:
// gr::vocoder::g723_24_decode_bs::sptr
diff --git a/gr-vocoder/include/vocoder/g723_24_encode_sb.h b/gr-vocoder/include/vocoder/g723_24_encode_sb.h
index c63a9ec84b..4528a4a6ea 100644
--- a/gr-vocoder/include/vocoder/g723_24_encode_sb.h
+++ b/gr-vocoder/include/vocoder/g723_24_encode_sb.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_G723_24_ENCODE_SB_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g723_24 audio encoding.
* \ingroup audio_blk
*/
- class VOCODER_API g723_24_encode_sb : virtual public gr_sync_block
+ class VOCODER_API g723_24_encode_sb : virtual public sync_block
{
public:
// gr::vocoder::g723_24_encode_sb::sptr
diff --git a/gr-vocoder/include/vocoder/g723_40_decode_bs.h b/gr-vocoder/include/vocoder/g723_40_decode_bs.h
index 433e74149c..39d58413e7 100644
--- a/gr-vocoder/include/vocoder/g723_40_decode_bs.h
+++ b/gr-vocoder/include/vocoder/g723_40_decode_bs.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_G723_40_DECODE_BS_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g723_40 audio decoding.
* \ingroup audio_blk
*/
- class VOCODER_API g723_40_decode_bs : virtual public gr_sync_block
+ class VOCODER_API g723_40_decode_bs : virtual public sync_block
{
public:
// gr::vocoder::g723_40_decode_bs::sptr
diff --git a/gr-vocoder/include/vocoder/g723_40_encode_sb.h b/gr-vocoder/include/vocoder/g723_40_encode_sb.h
index af28996412..c3aa78345c 100644
--- a/gr-vocoder/include/vocoder/g723_40_encode_sb.h
+++ b/gr-vocoder/include/vocoder/g723_40_encode_sb.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_G723_40_ENCODE_SB_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g723_40 audio encoding.
* \ingroup audio_blk
*/
- class VOCODER_API g723_40_encode_sb : virtual public gr_sync_block
+ class VOCODER_API g723_40_encode_sb : virtual public sync_block
{
public:
// gr::vocoder::g723_40_encode_sb::sptr
diff --git a/gr-vocoder/include/vocoder/gsm_fr_decode_ps.h b/gr-vocoder/include/vocoder/gsm_fr_decode_ps.h
index cda62f19db..2068a02645 100644
--- a/gr-vocoder/include/vocoder/gsm_fr_decode_ps.h
+++ b/gr-vocoder/include/vocoder/gsm_fr_decode_ps.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_GSM_FR_DECODE_PS_H
#include <vocoder/api.h>
-#include <gr_sync_interpolator.h>
+#include <gnuradio/sync_interpolator.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief GSM 06.10 Full Rate Vocoder Decoder
* \ingroup audio_blk
*/
- class VOCODER_API gsm_fr_decode_ps : virtual public gr_sync_interpolator
+ class VOCODER_API gsm_fr_decode_ps : virtual public sync_interpolator
{
public:
// gr::vocoder::gsm_fr_decode_ps::sptr
diff --git a/gr-vocoder/include/vocoder/gsm_fr_encode_sp.h b/gr-vocoder/include/vocoder/gsm_fr_encode_sp.h
index 798e99a3b1..2c9c73d611 100644
--- a/gr-vocoder/include/vocoder/gsm_fr_encode_sp.h
+++ b/gr-vocoder/include/vocoder/gsm_fr_encode_sp.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_GSM_FR_ENCODE_SP_H
#include <vocoder/api.h>
-#include <gr_sync_decimator.h>
+#include <gnuradio/sync_decimator.h>
namespace gr {
namespace vocoder {
@@ -35,7 +35,7 @@ namespace gr {
*
* shorts in; 33 byte packets out
*/
- class VOCODER_API gsm_fr_encode_sp : virtual public gr_sync_decimator
+ class VOCODER_API gsm_fr_encode_sp : virtual public sync_decimator
{
public:
// gr::vocoder::gsm_fr_encode_sp::sptr
diff --git a/gr-vocoder/include/vocoder/ulaw_decode_bs.h b/gr-vocoder/include/vocoder/ulaw_decode_bs.h
index 74c15531c0..d9fa106705 100644
--- a/gr-vocoder/include/vocoder/ulaw_decode_bs.h
+++ b/gr-vocoder/include/vocoder/ulaw_decode_bs.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_ULAW_DECODE_BS_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs ulaw audio decoding.
* \ingroup audio_blk
*/
- class VOCODER_API ulaw_decode_bs : virtual public gr_sync_block
+ class VOCODER_API ulaw_decode_bs : virtual public sync_block
{
public:
// gr::vocoder::ulaw_decode_bs::sptr
diff --git a/gr-vocoder/include/vocoder/ulaw_encode_sb.h b/gr-vocoder/include/vocoder/ulaw_encode_sb.h
index 8d18d00138..f9ce9c8a8a 100644
--- a/gr-vocoder/include/vocoder/ulaw_encode_sb.h
+++ b/gr-vocoder/include/vocoder/ulaw_encode_sb.h
@@ -24,7 +24,7 @@
#define INCLUDED_VOCODER_ULAW_ENCODER_SB_H
#include <vocoder/api.h>
-#include <gr_sync_block.h>
+#include <gnuradio/sync_block.h>
namespace gr {
namespace vocoder {
@@ -33,7 +33,7 @@ namespace gr {
* \brief This block performs g.711 ulaw audio encoding.
* \ingroup audio_blk
*/
- class VOCODER_API ulaw_encode_sb : virtual public gr_sync_block
+ class VOCODER_API ulaw_encode_sb : virtual public sync_block
{
public:
// gr::vocoder::ulaw_encode_sb::sptr
diff --git a/gr-vocoder/lib/alaw_decode_bs_impl.cc b/gr-vocoder/lib/alaw_decode_bs_impl.cc
index abea694da9..2f43304578 100644
--- a/gr-vocoder/lib/alaw_decode_bs_impl.cc
+++ b/gr-vocoder/lib/alaw_decode_bs_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "alaw_decode_bs_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -43,9 +43,9 @@ extern "C" {
}
alaw_decode_bs_impl::alaw_decode_bs_impl()
- : gr_sync_block("vocoder_alaw_decode_bs",
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
- gr_make_io_signature(1, 1, sizeof(short)))
+ : sync_block("vocoder_alaw_decode_bs",
+ io_signature::make(1, 1, sizeof(unsigned char)),
+ io_signature::make(1, 1, sizeof(short)))
{
}
diff --git a/gr-vocoder/lib/alaw_encode_sb_impl.cc b/gr-vocoder/lib/alaw_encode_sb_impl.cc
index 4b316f2e14..9c941e790d 100644
--- a/gr-vocoder/lib/alaw_encode_sb_impl.cc
+++ b/gr-vocoder/lib/alaw_encode_sb_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "alaw_encode_sb_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -43,9 +43,9 @@ extern "C" {
}
alaw_encode_sb_impl::alaw_encode_sb_impl()
- : gr_sync_block("avocoder_law_encode_sb",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(unsigned char)))
+ : sync_block("avocoder_law_encode_sb",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(unsigned char)))
{
}
diff --git a/gr-vocoder/lib/codec2_decode_ps_impl.cc b/gr-vocoder/lib/codec2_decode_ps_impl.cc
index cd47c9e702..57ab62422e 100644
--- a/gr-vocoder/lib/codec2_decode_ps_impl.cc
+++ b/gr-vocoder/lib/codec2_decode_ps_impl.cc
@@ -30,7 +30,7 @@ extern "C" {
#include "codec2/codec2.h"
}
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <stdexcept>
#include <assert.h>
@@ -46,9 +46,9 @@ namespace gr {
codec2_decode_ps_impl::codec2_decode_ps_impl ()
- : gr_sync_interpolator("vocoder_codec2_decode_ps",
- gr_make_io_signature(1, 1, CODEC2_BITS_PER_FRAME * sizeof(char)),
- gr_make_io_signature (1, 1, sizeof(short)),
+ : sync_interpolator("vocoder_codec2_decode_ps",
+ io_signature::make(1, 1, CODEC2_BITS_PER_FRAME * sizeof(char)),
+ io_signature::make (1, 1, sizeof(short)),
CODEC2_SAMPLES_PER_FRAME)
{
if((d_codec2 = codec2_create()) == 0)
diff --git a/gr-vocoder/lib/codec2_encode_sp_impl.cc b/gr-vocoder/lib/codec2_encode_sp_impl.cc
index 0217fbd424..3f79e06409 100644
--- a/gr-vocoder/lib/codec2_encode_sp_impl.cc
+++ b/gr-vocoder/lib/codec2_encode_sp_impl.cc
@@ -30,7 +30,7 @@ extern "C" {
#include "codec2/codec2.h"
}
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <stdexcept>
namespace gr {
@@ -44,9 +44,9 @@ namespace gr {
}
codec2_encode_sp_impl::codec2_encode_sp_impl()
- : gr_sync_decimator("vocoder_codec2_encode_sp",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, CODEC2_BITS_PER_FRAME * sizeof(char)),
+ : sync_decimator("vocoder_codec2_encode_sp",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, CODEC2_BITS_PER_FRAME * sizeof(char)),
CODEC2_SAMPLES_PER_FRAME)
{
if((d_codec2 = codec2_create()) == 0)
diff --git a/gr-vocoder/lib/cvsd_decode_bs_impl.cc b/gr-vocoder/lib/cvsd_decode_bs_impl.cc
index e7f284adda..57379b2162 100644
--- a/gr-vocoder/lib/cvsd_decode_bs_impl.cc
+++ b/gr-vocoder/lib/cvsd_decode_bs_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "cvsd_decode_bs_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -45,9 +45,9 @@ namespace gr {
cvsd_decode_bs_impl::cvsd_decode_bs_impl(short min_step, short max_step, double step_decay,
double accum_decay, int K, int J,
short pos_accum_max, short neg_accum_max)
- : gr_sync_interpolator("vocoder_cvsd_decode_bs",
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
- gr_make_io_signature(1, 1, sizeof(short)),
+ : sync_interpolator("vocoder_cvsd_decode_bs",
+ io_signature::make(1, 1, sizeof(unsigned char)),
+ io_signature::make(1, 1, sizeof(short)),
8),
d_min_step(min_step), d_max_step(max_step), d_step_decay(step_decay),
d_accum_decay(accum_decay), d_K(K), d_J(J),
diff --git a/gr-vocoder/lib/cvsd_encode_sb_impl.cc b/gr-vocoder/lib/cvsd_encode_sb_impl.cc
index 74ecdb25e1..b567f7868c 100644
--- a/gr-vocoder/lib/cvsd_encode_sb_impl.cc
+++ b/gr-vocoder/lib/cvsd_encode_sb_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "cvsd_encode_sb_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -45,9 +45,9 @@ namespace gr {
cvsd_encode_sb_impl::cvsd_encode_sb_impl(short min_step, short max_step, double step_decay,
double accum_decay, int K, int J,
short pos_accum_max, short neg_accum_max)
- : gr_sync_decimator("vocoder_cvsd_encode_sb",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
+ : sync_decimator("vocoder_cvsd_encode_sb",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(unsigned char)),
8),
d_min_step (min_step), d_max_step(max_step), d_step_decay(step_decay),
d_accum_decay(accum_decay), d_K(K), d_J(J),
diff --git a/gr-vocoder/lib/g721_decode_bs_impl.cc b/gr-vocoder/lib/g721_decode_bs_impl.cc
index 143bbc514d..db23ffa677 100644
--- a/gr-vocoder/lib/g721_decode_bs_impl.cc
+++ b/gr-vocoder/lib/g721_decode_bs_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "g721_decode_bs_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
g721_decode_bs_impl::g721_decode_bs_impl()
- : gr_sync_block("vocoder_g721_decode_bs",
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
- gr_make_io_signature(1, 1, sizeof(short)))
+ : sync_block("vocoder_g721_decode_bs",
+ io_signature::make(1, 1, sizeof(unsigned char)),
+ io_signature::make(1, 1, sizeof(short)))
{
g72x_init_state(&d_state);
}
diff --git a/gr-vocoder/lib/g721_encode_sb_impl.cc b/gr-vocoder/lib/g721_encode_sb_impl.cc
index a961b0efeb..9293c46a83 100644
--- a/gr-vocoder/lib/g721_encode_sb_impl.cc
+++ b/gr-vocoder/lib/g721_encode_sb_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "g721_encode_sb_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
g721_encode_sb_impl::g721_encode_sb_impl()
- : gr_sync_block("vocoder_g721_encode_sb",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(unsigned char)))
+ : sync_block("vocoder_g721_encode_sb",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(unsigned char)))
{
g72x_init_state(&d_state);
}
diff --git a/gr-vocoder/lib/g723_24_decode_bs_impl.cc b/gr-vocoder/lib/g723_24_decode_bs_impl.cc
index f7a8b59a08..c78229c4f3 100644
--- a/gr-vocoder/lib/g723_24_decode_bs_impl.cc
+++ b/gr-vocoder/lib/g723_24_decode_bs_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "g723_24_decode_bs_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
g723_24_decode_bs_impl::g723_24_decode_bs_impl()
- : gr_sync_block("vocoder_g723_24_decode_bs",
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
- gr_make_io_signature(1, 1, sizeof(short)))
+ : sync_block("vocoder_g723_24_decode_bs",
+ io_signature::make(1, 1, sizeof(unsigned char)),
+ io_signature::make(1, 1, sizeof(short)))
{
g72x_init_state(&d_state);
}
diff --git a/gr-vocoder/lib/g723_24_encode_sb_impl.cc b/gr-vocoder/lib/g723_24_encode_sb_impl.cc
index 8b168197b5..cf721e3580 100644
--- a/gr-vocoder/lib/g723_24_encode_sb_impl.cc
+++ b/gr-vocoder/lib/g723_24_encode_sb_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "g723_24_encode_sb_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
g723_24_encode_sb_impl::g723_24_encode_sb_impl()
- : gr_sync_block("vocoder_g723_24_encode_sb",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(unsigned char)))
+ : sync_block("vocoder_g723_24_encode_sb",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(unsigned char)))
{
g72x_init_state(&d_state);
}
diff --git a/gr-vocoder/lib/g723_40_decode_bs_impl.cc b/gr-vocoder/lib/g723_40_decode_bs_impl.cc
index 0790c9481c..4302583200 100644
--- a/gr-vocoder/lib/g723_40_decode_bs_impl.cc
+++ b/gr-vocoder/lib/g723_40_decode_bs_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "g723_40_decode_bs_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
g723_40_decode_bs_impl::g723_40_decode_bs_impl()
- : gr_sync_block("vocoder_g723_40_decode_bs",
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
- gr_make_io_signature(1, 1, sizeof(short)))
+ : sync_block("vocoder_g723_40_decode_bs",
+ io_signature::make(1, 1, sizeof(unsigned char)),
+ io_signature::make(1, 1, sizeof(short)))
{
g72x_init_state(&d_state);
}
diff --git a/gr-vocoder/lib/g723_40_encode_sb_impl.cc b/gr-vocoder/lib/g723_40_encode_sb_impl.cc
index 54dd052637..ff1910c55f 100644
--- a/gr-vocoder/lib/g723_40_encode_sb_impl.cc
+++ b/gr-vocoder/lib/g723_40_encode_sb_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "g723_40_encode_sb_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
g723_40_encode_sb_impl::g723_40_encode_sb_impl()
- : gr_sync_block("vocoder_g723_40_encode_sb",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(unsigned char)))
+ : sync_block("vocoder_g723_40_encode_sb",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(unsigned char)))
{
g72x_init_state(&d_state);
}
diff --git a/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc b/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc
index 2b3d11135c..e318a60668 100644
--- a/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc
+++ b/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "gsm_fr_decode_ps_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <stdexcept>
#include <assert.h>
@@ -40,9 +40,9 @@ namespace gr {
}
gsm_fr_decode_ps_impl::gsm_fr_decode_ps_impl()
- : gr_sync_interpolator("vocoder_gsm_fr_decode_ps",
- gr_make_io_signature(1, 1, sizeof(gsm_frame)),
- gr_make_io_signature(1, 1, sizeof(short)),
+ : sync_interpolator("vocoder_gsm_fr_decode_ps",
+ io_signature::make(1, 1, sizeof(gsm_frame)),
+ io_signature::make(1, 1, sizeof(short)),
GSM_SAMPLES_PER_FRAME)
{
if((d_gsm = gsm_create()) == 0)
diff --git a/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc b/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc
index c7b10089fb..143a73bce7 100644
--- a/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc
+++ b/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "gsm_fr_encode_sp_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <stdexcept>
namespace gr {
@@ -39,9 +39,9 @@ namespace gr {
}
gsm_fr_encode_sp_impl::gsm_fr_encode_sp_impl()
- : gr_sync_decimator("vocoder_gsm_fr_encode_sp",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(gsm_frame)),
+ : sync_decimator("vocoder_gsm_fr_encode_sp",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(gsm_frame)),
GSM_SAMPLES_PER_FRAME)
{
if((d_gsm = gsm_create ()) == 0)
diff --git a/gr-vocoder/lib/ulaw_decode_bs_impl.cc b/gr-vocoder/lib/ulaw_decode_bs_impl.cc
index d0c99b70a0..bbf58a54da 100644
--- a/gr-vocoder/lib/ulaw_decode_bs_impl.cc
+++ b/gr-vocoder/lib/ulaw_decode_bs_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "ulaw_decode_bs_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -43,9 +43,9 @@ extern "C" {
}
ulaw_decode_bs_impl::ulaw_decode_bs_impl()
- : gr_sync_block("vocoder_ulaw_decode_bs",
- gr_make_io_signature(1, 1, sizeof(unsigned char)),
- gr_make_io_signature(1, 1, sizeof(short)))
+ : sync_block("vocoder_ulaw_decode_bs",
+ io_signature::make(1, 1, sizeof(unsigned char)),
+ io_signature::make(1, 1, sizeof(short)))
{
}
diff --git a/gr-vocoder/lib/ulaw_encode_sb_impl.cc b/gr-vocoder/lib/ulaw_encode_sb_impl.cc
index a49df12b59..83d3864965 100644
--- a/gr-vocoder/lib/ulaw_encode_sb_impl.cc
+++ b/gr-vocoder/lib/ulaw_encode_sb_impl.cc
@@ -25,7 +25,7 @@
#endif
#include "ulaw_encode_sb_impl.h"
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <limits.h>
namespace gr {
@@ -43,9 +43,9 @@ extern "C" {
}
ulaw_encode_sb_impl::ulaw_encode_sb_impl()
- : gr_sync_block("vocoder_ulaw_encode_sb",
- gr_make_io_signature(1, 1, sizeof(short)),
- gr_make_io_signature(1, 1, sizeof(unsigned char)))
+ : sync_block("vocoder_ulaw_encode_sb",
+ io_signature::make(1, 1, sizeof(short)),
+ io_signature::make(1, 1, sizeof(unsigned char)))
{
}