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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dvbt_convolutional_interleaver_impl.h"
#include <gnuradio/io_signature.h>
#include <deque>
namespace gr {
namespace dtv {
dvbt_convolutional_interleaver::sptr
dvbt_convolutional_interleaver::make(int nsize, int I, int M)
{
return gnuradio::get_initial_sptr(
new dvbt_convolutional_interleaver_impl(nsize, I, M));
}
/*
* The private constructor
*/
dvbt_convolutional_interleaver_impl::dvbt_convolutional_interleaver_impl(int blocks,
int I,
int M)
: sync_interpolator("dvbt_convolutional_interleaver",
io_signature::make(1, 1, sizeof(unsigned char) * I * blocks),
io_signature::make(1, 1, sizeof(unsigned char)),
I * blocks),
d_I(I),
d_M(M)
{
// Positions are shift registers (FIFOs)
// of length i*M
for (int i = 0; i < d_I; i++) {
d_shift.push_back(new std::deque<unsigned char>(d_M * i, 0));
}
}
/*
* Our virtual destructor.
*/
dvbt_convolutional_interleaver_impl::~dvbt_convolutional_interleaver_impl()
{
for (unsigned int i = 0; i < d_shift.size(); i++) {
delete d_shift.back();
d_shift.pop_back();
}
}
int dvbt_convolutional_interleaver_impl::work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items)
{
const unsigned char* in = (const unsigned char*)input_items[0];
unsigned char* out = (unsigned char*)output_items[0];
for (int i = 0; i < (noutput_items / d_I); i++) {
// Process one block of I symbols
for (unsigned int j = 0; j < d_shift.size(); j++) {
d_shift[j]->push_front(in[(d_I * i) + j]);
out[(d_I * i) + j] = d_shift[j]->back();
d_shift[j]->pop_back();
}
}
// Tell runtime system how many output items we produced.
return noutput_items;
}
} /* namespace dtv */
} /* namespace gr */
|