GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
ival_decimator.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2020 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_IVAL_DECIMATOR_H
12 #define INCLUDED_IVAL_DECIMATOR_H
13 
14 #include <gnuradio/filter/api.h>
16 
17 namespace gr {
18 namespace filter {
19 
20 /*!
21  * \brief Filter-Delay Combination Block.
22  * \ingroup resamplers_blk
23  *
24  * \details
25  * This block provides interleaved char and short decimation without
26  * first having to convert to a type supported by a resampler.
27  *
28  */
30 {
31 public:
32  typedef std::shared_ptr<ival_decimator> sptr;
33 
34  static sptr make(int decimation, int data_size);
35 };
36 
37 } // namespace filter
38 } // namespace gr
39 
40 #endif /* INCLUDED_IVAL_DECIMATOR_H */
Filter-Delay Combination Block.
Definition: ival_decimator.h:30
static sptr make(int decimation, int data_size)
std::shared_ptr< ival_decimator > sptr
Definition: ival_decimator.h:32
synchronous N:1 input to output with history
Definition: sync_decimator.h:26
#define FILTER_API
Definition: gr-filter/include/gnuradio/filter/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29