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
|
/* -*- c++ -*- */
/*
* Copyright 2002 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include <atsci_reed_solomon.h>
#include <assert.h>
extern "C" {
#include "rs.h"
}
static const int rs_init_symsize = 8;
static const int rs_init_gfpoly = 0x11d;
static const int rs_init_fcr = 0; // first consecutive root
static const int rs_init_prim = 1; // primitive is 1 (alpha)
static const int rs_init_nroots = 20;
static const int N = (1 << rs_init_symsize) - 1; // 255
static const int K = N - rs_init_nroots; // 235
static const int amount_of_pad = N - ATSC_MPEG_RS_ENCODED_LENGTH; // 48
atsci_reed_solomon::atsci_reed_solomon ()
{
d_rs = init_rs_char (rs_init_symsize, rs_init_gfpoly,
rs_init_fcr, rs_init_prim, rs_init_nroots);
assert (d_rs != 0);
}
atsci_reed_solomon::~atsci_reed_solomon ()
{
if (d_rs)
free_rs_char (d_rs);
d_rs = 0;
}
void
atsci_reed_solomon::encode (atsc_mpeg_packet_rs_encoded &out, const atsc_mpeg_packet_no_sync &in)
{
unsigned char tmp[K];
assert ((int)(amount_of_pad + sizeof (in.data)) == K);
// add missing prefix zero padding to message
memset (tmp, 0, amount_of_pad);
memcpy (&tmp[amount_of_pad], in.data, sizeof (in.data));
// copy message portion to output packet
memcpy (out.data, in.data, sizeof (in.data));
// now compute parity bytes and add them to tail end of output packet
encode_rs_char (d_rs, tmp, &out.data[sizeof (in.data)]);
}
int
atsci_reed_solomon::decode (atsc_mpeg_packet_no_sync &out, const atsc_mpeg_packet_rs_encoded &in)
{
unsigned char tmp[N];
int ncorrections;
assert ((int)(amount_of_pad + sizeof (in.data)) == N);
// add missing prefix zero padding to message
memset (tmp, 0, amount_of_pad);
memcpy (&tmp[amount_of_pad], in.data, sizeof (in.data));
// correct message...
ncorrections = decode_rs_char (d_rs, tmp, 0, 0);
// copy corrected message to output, skipping prefix zero padding
memcpy (out.data, &tmp[amount_of_pad], sizeof (out.data));
return ncorrections;
}
|