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