blob: 1ab9bfa90b8c53810043a451e18aa95f3a579c3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DTV_DVBT_CONVOLUTIONAL_DEINTERLEAVER_IMPL_H
#define INCLUDED_DTV_DVBT_CONVOLUTIONAL_DEINTERLEAVER_IMPL_H
#include <gnuradio/dtv/dvbt_convolutional_deinterleaver.h>
namespace gr {
namespace dtv {
class dvbt_convolutional_deinterleaver_impl : public dvbt_convolutional_deinterleaver
{
private:
static const int d_SYNC;
static const int d_NSYNC;
static const int d_MUX_PKT;
const int d_blocks;
const int d_I;
const int d_M;
std::vector<std::deque<unsigned char>> d_shift;
public:
dvbt_convolutional_deinterleaver_impl(int nsize, int I, int M);
~dvbt_convolutional_deinterleaver_impl() override;
void forecast(int noutput_items, gr_vector_int& ninput_items_required) override;
int general_work(int noutput_items,
gr_vector_int& ninput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} // namespace dtv
} // namespace gr
#endif /* INCLUDED_DTV_DVBT_CONVOLUTIONAL_DEINTERLEAVER_IMPL_H */
|