GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
gsm_fr_encode_sp.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2005,2011,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_GSM_FR_ENCODE_SP_H
12#define INCLUDED_VOCODER_GSM_FR_ENCODE_SP_H
13
16
17namespace gr {
18namespace vocoder {
19
20/*!
21 * \brief GSM 06.10 Full Rate Vocoder Encoder
22 * \ingroup audio_blk
23 *
24 * Input: 16-bit shorts representing speech samples
25 * Output: Vector of 33 bytes per 160 input samples
26 */
28{
29public:
30 // gr::vocoder::gsm_fr_encode_sp::sptr
31 typedef std::shared_ptr<gsm_fr_encode_sp> sptr;
32
33 /*!
34 * \brief Make GSM encoder block.
35 */
36 static sptr make();
37};
38
39} /* namespace vocoder */
40} /* namespace gr */
41
42#endif /* INCLUDED_VOCODER_GSM_FR_ENCODE_SP_H */
synchronous N:1 input to output with history
Definition: sync_decimator.h:26
GSM 06.10 Full Rate Vocoder Encoder.
Definition: gsm_fr_encode_sp.h:28
static sptr make()
Make GSM encoder block.
std::shared_ptr< gsm_fr_encode_sp > sptr
Definition: gsm_fr_encode_sp.h:31
#define VOCODER_API
Definition: gr-vocoder/include/gnuradio/vocoder/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29