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