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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
|
/* -*- c++ -*- */
/*
* Copyright 2015,2019 Free Software Foundation, Inc.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dvbt2_p1insertion_cc_impl.h"
#include <gnuradio/io_signature.h>
#include <stdio.h>
#include <algorithm>
namespace gr {
namespace dtv {
dvbt2_p1insertion_cc::sptr
dvbt2_p1insertion_cc::make(dvbt2_extended_carrier_t carriermode,
dvbt2_fftsize_t fftsize,
dvb_guardinterval_t guardinterval,
int numdatasyms,
dvbt2_preamble_t preamble,
dvbt2_showlevels_t showlevels,
float vclip)
{
return gnuradio::make_block_sptr<dvbt2_p1insertion_cc_impl>(
carriermode, fftsize, guardinterval, numdatasyms, preamble, showlevels, vclip);
}
/*
* The private constructor
*/
dvbt2_p1insertion_cc_impl::dvbt2_p1insertion_cc_impl(dvbt2_extended_carrier_t carriermode,
dvbt2_fftsize_t fftsize,
dvb_guardinterval_t guardinterval,
int numdatasyms,
dvbt2_preamble_t preamble,
dvbt2_showlevels_t showlevels,
float vclip)
: gr::block("dvbt2_p1insertion_cc",
gr::io_signature::make(1, 1, sizeof(gr_complex)),
gr::io_signature::make(1, 1, sizeof(gr_complex))),
show_levels(showlevels),
real_positive(0.0),
real_negative(0.0),
imag_positive(0.0),
imag_negative(0.0),
real_positive_threshold(vclip),
real_negative_threshold(-vclip),
imag_positive_threshold(vclip),
imag_negative_threshold(-vclip),
real_positive_threshold_count(0),
real_negative_threshold_count(0),
imag_positive_threshold_count(0),
imag_negative_threshold_count(0),
p1_fft(1024, false, 1)
{
int s1, s2, index = 0;
int p1_fft_size = 1024;
int symbol_size, N_P2, guard_interval;
const gr_complex* in = (const gr_complex*)p1_freq;
gr_complex* out = (gr_complex*)p1_time;
s1 = preamble;
switch (fftsize) {
case FFTSIZE_1K:
symbol_size = 1024;
N_P2 = 16;
break;
case FFTSIZE_2K:
symbol_size = 2048;
N_P2 = 8;
break;
case FFTSIZE_4K:
symbol_size = 4096;
N_P2 = 4;
break;
case FFTSIZE_8K:
case FFTSIZE_8K_T2GI:
symbol_size = 8192;
N_P2 = 2;
break;
case FFTSIZE_16K:
case FFTSIZE_16K_T2GI:
symbol_size = 16384;
N_P2 = 1;
break;
case FFTSIZE_32K:
case FFTSIZE_32K_T2GI:
symbol_size = 32768;
N_P2 = 1;
break;
}
switch (guardinterval) {
case GI_1_32:
guard_interval = symbol_size / 32;
break;
case GI_1_16:
guard_interval = symbol_size / 16;
break;
case GI_1_8:
guard_interval = symbol_size / 8;
break;
case GI_1_4:
guard_interval = symbol_size / 4;
break;
case GI_1_128:
guard_interval = symbol_size / 128;
break;
case GI_19_128:
guard_interval = (symbol_size * 19) / 128;
break;
case GI_19_256:
guard_interval = (symbol_size * 19) / 256;
break;
}
init_p1_randomizer();
s2 = (fftsize & 0x7) << 1;
for (int i = 0; i < 8; i++) {
for (int j = 7; j >= 0; j--) {
modulation_sequence[index++] = (s1_modulation_patterns[s1][i] >> j) & 0x1;
}
}
for (int i = 0; i < 32; i++) {
for (int j = 7; j >= 0; j--) {
modulation_sequence[index++] = (s2_modulation_patterns[s2][i] >> j) & 0x1;
}
}
for (int i = 0; i < 8; i++) {
for (int j = 7; j >= 0; j--) {
modulation_sequence[index++] = (s1_modulation_patterns[s1][i] >> j) & 0x1;
}
}
dbpsk_modulation_sequence[0] = 1;
for (int i = 1; i < 385; i++) {
dbpsk_modulation_sequence[i] = 0;
}
for (int i = 1; i < 385; i++) {
if (modulation_sequence[i - 1] == 1) {
dbpsk_modulation_sequence[i] = -dbpsk_modulation_sequence[i - 1];
} else {
dbpsk_modulation_sequence[i] = dbpsk_modulation_sequence[i - 1];
}
}
for (int i = 0; i < 384; i++) {
dbpsk_modulation_sequence[i] = dbpsk_modulation_sequence[i + 1] * p1_randomize[i];
}
std::fill_n(&p1_freq[0], 1024, 0);
for (int i = 0; i < 384; i++) {
p1_freq[p1_active_carriers[i] + 86] = float(dbpsk_modulation_sequence[i]);
}
gr_complex* dst = p1_fft.get_inbuf();
memcpy(&dst[p1_fft_size / 2], &in[0], sizeof(gr_complex) * p1_fft_size / 2);
memcpy(&dst[0], &in[p1_fft_size / 2], sizeof(gr_complex) * p1_fft_size / 2);
p1_fft.execute();
memcpy(out, p1_fft.get_outbuf(), sizeof(gr_complex) * p1_fft_size);
for (int i = 0; i < 1024; i++) {
p1_time[i] /= std::sqrt(384.0);
}
for (int i = 0; i < 1023; i++) {
p1_freqshft[i + 1] = p1_freq[i];
}
p1_freqshft[0] = p1_freq[1023];
in = (const gr_complex*)p1_freqshft;
out = (gr_complex*)p1_timeshft;
dst = p1_fft.get_inbuf();
memcpy(&dst[p1_fft_size / 2], &in[0], sizeof(gr_complex) * p1_fft_size / 2);
memcpy(&dst[0], &in[p1_fft_size / 2], sizeof(gr_complex) * p1_fft_size / 2);
p1_fft.execute();
memcpy(out, p1_fft.get_outbuf(), sizeof(gr_complex) * p1_fft_size);
for (int i = 0; i < 1024; i++) {
p1_timeshft[i] /= std::sqrt(384.0);
}
frame_items =
((numdatasyms + N_P2) * symbol_size) + ((numdatasyms + N_P2) * guard_interval);
insertion_items = frame_items + 2048;
set_output_multiple(frame_items + 2048);
}
void dvbt2_p1insertion_cc_impl::init_p1_randomizer(void)
{
int sr = 0x4e46;
for (int i = 0; i < 384; i++) {
int b = ((sr) ^ (sr >> 1)) & 1;
if (b == 0) {
p1_randomize[i] = 1;
} else {
p1_randomize[i] = -1;
}
sr >>= 1;
if (b)
sr |= 0x4000;
}
}
/*
* Our virtual destructor.
*/
dvbt2_p1insertion_cc_impl::~dvbt2_p1insertion_cc_impl() {}
void dvbt2_p1insertion_cc_impl::forecast(int noutput_items,
gr_vector_int& ninput_items_required)
{
ninput_items_required[0] = frame_items * (noutput_items / insertion_items);
}
int dvbt2_p1insertion_cc_impl::general_work(int noutput_items,
gr_vector_int& ninput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items)
{
const gr_complex* in = (const gr_complex*)input_items[0];
gr_complex* out = (gr_complex*)output_items[0];
gr_complex* level;
for (int i = 0; i < noutput_items; i += insertion_items) {
level = out;
for (int j = 0; j < 542; j++) {
*out++ = p1_timeshft[j];
}
for (int j = 0; j < 1024; j++) {
*out++ = p1_time[j];
}
for (int j = 542; j < 1024; j++) {
*out++ = p1_timeshft[j];
}
memcpy(out, in, sizeof(gr_complex) * frame_items);
if (show_levels == TRUE) {
for (int j = 0; j < frame_items + 2048; j++) {
if (level[j].real() > real_positive) {
real_positive = level[j].real();
}
if (level[j].real() < real_negative) {
real_negative = level[j].real();
}
if (level[j].imag() > imag_positive) {
imag_positive = level[j].imag();
}
if (level[j].imag() < imag_negative) {
imag_negative = level[j].imag();
}
if (level[j].real() > real_positive_threshold) {
real_positive_threshold_count++;
}
if (level[j].real() < real_negative_threshold) {
real_negative_threshold_count++;
}
if (level[j].imag() > imag_positive_threshold) {
imag_positive_threshold_count++;
}
if (level[j].imag() < imag_negative_threshold) {
imag_negative_threshold_count++;
}
}
printf("peak real = %+e, %+e, %d, %d\n",
real_positive,
real_negative,
real_positive_threshold_count,
real_negative_threshold_count);
printf("peak imag = %+e, %+e, %d, %d\n",
imag_positive,
imag_negative,
imag_positive_threshold_count,
imag_negative_threshold_count);
}
out += frame_items;
in += frame_items;
}
// Tell runtime system how many input items we consumed on
// each input stream.
consume_each(frame_items);
// Tell runtime system how many output items we produced.
return noutput_items;
}
const int dvbt2_p1insertion_cc_impl::p1_active_carriers[384] = {
44, 45, 47, 51, 54, 59, 62, 64, 65, 66, 70, 75, 78, 80, 81, 82,
84, 85, 87, 88, 89, 90, 94, 96, 97, 98, 102, 107, 110, 112, 113, 114,
116, 117, 119, 120, 121, 122, 124, 125, 127, 131, 132, 133, 135, 136, 137, 138,
142, 144, 145, 146, 148, 149, 151, 152, 153, 154, 158, 160, 161, 162, 166, 171,
172, 173, 175, 179, 182, 187, 190, 192, 193, 194, 198, 203, 206, 208, 209, 210,
212, 213, 215, 216, 217, 218, 222, 224, 225, 226, 230, 235, 238, 240, 241, 242,
244, 245, 247, 248, 249, 250, 252, 253, 255, 259, 260, 261, 263, 264, 265, 266,
270, 272, 273, 274, 276, 277, 279, 280, 281, 282, 286, 288, 289, 290, 294, 299,
300, 301, 303, 307, 310, 315, 318, 320, 321, 322, 326, 331, 334, 336, 337, 338,
340, 341, 343, 344, 345, 346, 350, 352, 353, 354, 358, 363, 364, 365, 367, 371,
374, 379, 382, 384, 385, 386, 390, 395, 396, 397, 399, 403, 406, 411, 412, 413,
415, 419, 420, 421, 423, 424, 425, 426, 428, 429, 431, 435, 438, 443, 446, 448,
449, 450, 454, 459, 462, 464, 465, 466, 468, 469, 471, 472, 473, 474, 478, 480,
481, 482, 486, 491, 494, 496, 497, 498, 500, 501, 503, 504, 505, 506, 508, 509,
511, 515, 516, 517, 519, 520, 521, 522, 526, 528, 529, 530, 532, 533, 535, 536,
537, 538, 542, 544, 545, 546, 550, 555, 558, 560, 561, 562, 564, 565, 567, 568,
569, 570, 572, 573, 575, 579, 580, 581, 583, 584, 585, 586, 588, 589, 591, 595,
598, 603, 604, 605, 607, 611, 612, 613, 615, 616, 617, 618, 622, 624, 625, 626,
628, 629, 631, 632, 633, 634, 636, 637, 639, 643, 644, 645, 647, 648, 649, 650,
654, 656, 657, 658, 660, 661, 663, 664, 665, 666, 670, 672, 673, 674, 678, 683,
684, 689, 692, 696, 698, 699, 701, 702, 703, 704, 706, 707, 708, 712, 714, 715,
717, 718, 719, 720, 722, 723, 725, 726, 727, 729, 733, 734, 735, 736, 738, 739,
740, 744, 746, 747, 748, 753, 756, 760, 762, 763, 765, 766, 767, 768, 770, 771,
772, 776, 778, 779, 780, 785, 788, 792, 794, 795, 796, 801, 805, 806, 807, 809
};
const unsigned char dvbt2_p1insertion_cc_impl::s1_modulation_patterns[8][8] = {
{ 0x12, 0x47, 0x21, 0x74, 0x1D, 0x48, 0x2E, 0x7B },
{ 0x47, 0x12, 0x74, 0x21, 0x48, 0x1D, 0x7B, 0x2E },
{ 0x21, 0x74, 0x12, 0x47, 0x2E, 0x7B, 0x1D, 0x48 },
{ 0x74, 0x21, 0x47, 0x12, 0x7B, 0x2E, 0x48, 0x1D },
{ 0x1D, 0x48, 0x2E, 0x7B, 0x12, 0x47, 0x21, 0x74 },
{ 0x48, 0x1D, 0x7B, 0x2E, 0x47, 0x12, 0x74, 0x21 },
{ 0x2E, 0x7B, 0x1D, 0x48, 0x21, 0x74, 0x12, 0x47 },
{ 0x7B, 0x2E, 0x48, 0x1D, 0x74, 0x21, 0x47, 0x12 }
};
const unsigned char dvbt2_p1insertion_cc_impl::s2_modulation_patterns[16][32] = {
{ 0x12, 0x1D, 0x47, 0x48, 0x21, 0x2E, 0x74, 0x7B, 0x1D, 0x12, 0x48,
0x47, 0x2E, 0x21, 0x7B, 0x74, 0x12, 0xE2, 0x47, 0xB7, 0x21, 0xD1,
0x74, 0x84, 0x1D, 0xED, 0x48, 0xB8, 0x2E, 0xDE, 0x7B, 0x8B },
{ 0x47, 0x48, 0x12, 0x1D, 0x74, 0x7B, 0x21, 0x2E, 0x48, 0x47, 0x1D,
0x12, 0x7B, 0x74, 0x2E, 0x21, 0x47, 0xB7, 0x12, 0xE2, 0x74, 0x84,
0x21, 0xD1, 0x48, 0xB8, 0x1D, 0xED, 0x7B, 0x8B, 0x2E, 0xDE },
{ 0x21, 0x2E, 0x74, 0x7B, 0x12, 0x1D, 0x47, 0x48, 0x2E, 0x21, 0x7B,
0x74, 0x1D, 0x12, 0x48, 0x47, 0x21, 0xD1, 0x74, 0x84, 0x12, 0xE2,
0x47, 0xB7, 0x2E, 0xDE, 0x7B, 0x8B, 0x1D, 0xED, 0x48, 0xB8 },
{ 0x74, 0x7B, 0x21, 0x2E, 0x47, 0x48, 0x12, 0x1D, 0x7B, 0x74, 0x2E,
0x21, 0x48, 0x47, 0x1D, 0x12, 0x74, 0x84, 0x21, 0xD1, 0x47, 0xB7,
0x12, 0xE2, 0x7B, 0x8B, 0x2E, 0xDE, 0x48, 0xB8, 0x1D, 0xED },
{ 0x1D, 0x12, 0x48, 0x47, 0x2E, 0x21, 0x7B, 0x74, 0x12, 0x1D, 0x47,
0x48, 0x21, 0x2E, 0x74, 0x7B, 0x1D, 0xED, 0x48, 0xB8, 0x2E, 0xDE,
0x7B, 0x8B, 0x12, 0xE2, 0x47, 0xB7, 0x21, 0xD1, 0x74, 0x84 },
{ 0x48, 0x47, 0x1D, 0x12, 0x7B, 0x74, 0x2E, 0x21, 0x47, 0x48, 0x12,
0x1D, 0x74, 0x7B, 0x21, 0x2E, 0x48, 0xB8, 0x1D, 0xED, 0x7B, 0x8B,
0x2E, 0xDE, 0x47, 0xB7, 0x12, 0xE2, 0x74, 0x84, 0x21, 0xD1 },
{ 0x2E, 0x21, 0x7B, 0x74, 0x1D, 0x12, 0x48, 0x47, 0x21, 0x2E, 0x74,
0x7B, 0x12, 0x1D, 0x47, 0x48, 0x2E, 0xDE, 0x7B, 0x8B, 0x1D, 0xED,
0x48, 0xB8, 0x21, 0xD1, 0x74, 0x84, 0x12, 0xE2, 0x47, 0xB7 },
{ 0x7B, 0x74, 0x2E, 0x21, 0x48, 0x47, 0x1D, 0x12, 0x74, 0x7B, 0x21,
0x2E, 0x47, 0x48, 0x12, 0x1D, 0x7B, 0x8B, 0x2E, 0xDE, 0x48, 0xB8,
0x1D, 0xED, 0x74, 0x84, 0x21, 0xD1, 0x47, 0xB7, 0x12, 0xE2 },
{ 0x12, 0xE2, 0x47, 0xB7, 0x21, 0xD1, 0x74, 0x84, 0x1D, 0xED, 0x48,
0xB8, 0x2E, 0xDE, 0x7B, 0x8B, 0x12, 0x1D, 0x47, 0x48, 0x21, 0x2E,
0x74, 0x7B, 0x1D, 0x12, 0x48, 0x47, 0x2E, 0x21, 0x7B, 0x74 },
{ 0x47, 0xB7, 0x12, 0xE2, 0x74, 0x84, 0x21, 0xD1, 0x48, 0xB8, 0x1D,
0xED, 0x7B, 0x8B, 0x2E, 0xDE, 0x47, 0x48, 0x12, 0x1D, 0x74, 0x7B,
0x21, 0x2E, 0x48, 0x47, 0x1D, 0x12, 0x7B, 0x74, 0x2E, 0x21 },
{ 0x21, 0xD1, 0x74, 0x84, 0x12, 0xE2, 0x47, 0xB7, 0x2E, 0xDE, 0x7B,
0x8B, 0x1D, 0xED, 0x48, 0xB8, 0x21, 0x2E, 0x74, 0x7B, 0x12, 0x1D,
0x47, 0x48, 0x2E, 0x21, 0x7B, 0x74, 0x1D, 0x12, 0x48, 0x47 },
{ 0x74, 0x84, 0x21, 0xD1, 0x47, 0xB7, 0x12, 0xE2, 0x7B, 0x8B, 0x2E,
0xDE, 0x48, 0xB8, 0x1D, 0xED, 0x74, 0x7B, 0x21, 0x2E, 0x47, 0x48,
0x12, 0x1D, 0x7B, 0x74, 0x2E, 0x21, 0x48, 0x47, 0x1D, 0x12 },
{ 0x1D, 0xED, 0x48, 0xB8, 0x2E, 0xDE, 0x7B, 0x8B, 0x12, 0xE2, 0x47,
0xB7, 0x21, 0xD1, 0x74, 0x84, 0x1D, 0x12, 0x48, 0x47, 0x2E, 0x21,
0x7B, 0x74, 0x12, 0x1D, 0x47, 0x48, 0x21, 0x2E, 0x74, 0x7B },
{ 0x48, 0xB8, 0x1D, 0xED, 0x7B, 0x8B, 0x2E, 0xDE, 0x47, 0xB7, 0x12,
0xE2, 0x74, 0x84, 0x21, 0xD1, 0x48, 0x47, 0x1D, 0x12, 0x7B, 0x74,
0x2E, 0x21, 0x47, 0x48, 0x12, 0x1D, 0x74, 0x7B, 0x21, 0x2E },
{ 0x2E, 0xDE, 0x7B, 0x8B, 0x1D, 0xED, 0x48, 0xB8, 0x21, 0xD1, 0x74,
0x84, 0x12, 0xE2, 0x47, 0xB7, 0x2E, 0x21, 0x7B, 0x74, 0x1D, 0x12,
0x48, 0x47, 0x21, 0x2E, 0x74, 0x7B, 0x12, 0x1D, 0x47, 0x48 },
{ 0x7B, 0x8B, 0x2E, 0xDE, 0x48, 0xB8, 0x1D, 0xED, 0x74, 0x84, 0x21,
0xD1, 0x47, 0xB7, 0x12, 0xE2, 0x7B, 0x74, 0x2E, 0x21, 0x48, 0x47,
0x1D, 0x12, 0x74, 0x7B, 0x21, 0x2E, 0x47, 0x48, 0x12, 0x1D }
};
} /* namespace dtv */
} /* namespace gr */
|