GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
g723_40_decode_bs.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2011,2013 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_VOCODER_G723_40_DECODE_BS_H
12 #define INCLUDED_VOCODER_G723_40_DECODE_BS_H
13 
14 #include <gnuradio/sync_block.h>
15 #include <gnuradio/vocoder/api.h>
16 
17 namespace gr {
18 namespace vocoder {
19 
20 /*!
21  * \brief This block performs g723_40 audio decoding.
22  * \ingroup audio_blk
23  */
25 {
26 public:
27  // gr::vocoder::g723_40_decode_bs::sptr
28  typedef std::shared_ptr<g723_40_decode_bs> sptr;
29 
30  /*!
31  * \brief Make G722_40 decoder block.
32  */
33  static sptr make();
34 };
35 
36 } /* namespace vocoder */
37 } /* namespace gr */
38 
39 #endif /* INCLUDED_VOCODER_G723_40_DECODE_BS_H */
synchronous 1:1 input to output with history
Definition: sync_block.h:26
This block performs g723_40 audio decoding.
Definition: g723_40_decode_bs.h:25
std::shared_ptr< g723_40_decode_bs > sptr
Definition: g723_40_decode_bs.h:28
static sptr make()
Make G722_40 decoder block.
#define VOCODER_API
Definition: gr-vocoder/include/gnuradio/vocoder/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29