GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
ulaw_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_ULAW_DECODE_BS_H
12#define INCLUDED_VOCODER_ULAW_DECODE_BS_H
13
14#include <gnuradio/sync_block.h>
16
17namespace gr {
18namespace vocoder {
19
20/*!
21 * \brief This block performs ulaw audio decoding.
22 * \ingroup audio_blk
23 */
25{
26public:
27 // gr::vocoder::ulaw_decode_bs::sptr
28 typedef std::shared_ptr<ulaw_decode_bs> sptr;
29
30 /*!
31 * \brief Make ulaw decoder block.
32 */
33 static sptr make();
34};
35
36} /* namespace vocoder */
37} /* namespace gr */
38
39#endif /* INCLUDED_VOCODER_ULAW_DECODE_BS_H */
synchronous 1:1 input to output with history
Definition: sync_block.h:26
This block performs ulaw audio decoding.
Definition: ulaw_decode_bs.h:25
std::shared_ptr< ulaw_decode_bs > sptr
Definition: ulaw_decode_bs.h:28
static sptr make()
Make ulaw decoder block.
#define VOCODER_API
Definition: gr-vocoder/include/gnuradio/vocoder/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29