GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
codec2_encode_sp.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2005,2013,2014 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_CODEC2_ENCODE_SP_H
12#define INCLUDED_VOCODER_CODEC2_ENCODE_SP_H
13
17
18namespace gr {
19namespace vocoder {
20
21/*!
22 * \brief CODEC2 Vocoder Encoder
23 * \ingroup audio_blk
24 *
25 * Input: Speech (audio) signal as 16-bit shorts, sampling rate 8 kHz.
26 *
27 * Output: Vector of unpacked bits, forming one Codec2 frame, per 160
28 * input samples (in 2400 and 3200 bps modes) or per 320 input
29 * samples (in 1200, 1300, 1400 and 1600 bps modes).
30 *
31 */
33{
34public:
35 // gr::vocoder::codec2_encode_sp::sptr
36 typedef std::shared_ptr<codec2_encode_sp> sptr;
37
38 /*!
39 * \brief Make Codec2 encoder block.
40 *
41 * \param mode Encoded bit rate/mode
42 */
43 static sptr make(int mode = codec2::MODE_2400);
44};
45
46} /* namespace vocoder */
47} /* namespace gr */
48
49#endif /* INCLUDED_VOCODER_CODEC2_ENCODE_SP_H */
synchronous N:1 input to output with history
Definition: sync_decimator.h:26
CODEC2 Vocoder Encoder.
Definition: codec2_encode_sp.h:33
static sptr make(int mode=codec2::MODE_2400)
Make Codec2 encoder block.
std::shared_ptr< codec2_encode_sp > sptr
Definition: codec2_encode_sp.h:36
@ MODE_2400
Definition: codec2.h:28
#define VOCODER_API
Definition: gr-vocoder/include/gnuradio/vocoder/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29