3 * Global definitions for Reed-Solomon encoder/decoder,
4 * by Phil Karn (karn@ka9q.ampr.org) September 1996
5 * Copyright 1999 Phil Karn, KA9Q
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * SPDX-License-Identifier: GPL-2.0-or-later
18 /* Set one of these to enable encoder/decoder debugging and error checking,
19 * at the expense of speed */
24 /* To select the CCSDS standard (255,223) code, define CCSDS. This
25 * implies standard values for MM, KK, B0 and PRIM.
31 /* Otherwise, leave CCSDS undefined and set the parameters below:
33 * Set MM to be the size of each code symbol in bits. The Reed-Solomon
34 * block size will then be NN = 2**M - 1 symbols. Supported values are
37 #define MM 8 /* Symbol size in bits */
40 * Set KK to be the number of data symbols in each block, which must be
41 * less than the block size. The code will then be able to correct up
42 * to NN-KK erasures or (NN-KK)/2 errors, or combinations thereof with
43 * each error counting as two erasures.
45 #define KK 207 /* Number of data symbols per block */
47 /* Set B0 to the first root of the generator polynomial, in alpha form, and
48 * set PRIM to the power of alpha used to generate the roots of the
49 * generator polynomial. The generator polynomial will then be
50 * @**PRIM*B0, @**PRIM*(B0+1), @**PRIM*(B0+2)...@**PRIM*(B0+NN-KK)
51 * where "@" represents a lower case alpha.
53 #define B0 1 /* First root of generator polynomial, alpha form */
54 #define PRIM 1 /* power of alpha used to generate roots of generator poly */
55 #define STANDARD_ORDER
57 /* If you want to select your own field generator polynomial, you'll have
58 * to edit that in rs.c.
62 /* Don't change these, they're CCSDS standard */
69 #define NN ((1 << MM) - 1)
72 typedef unsigned char dtype
;
74 typedef unsigned int dtype
;
77 /* Reed-Solomon encoding
78 * data[] is the input block, parity symbols are placed in bb[]
79 * bb[] may lie past the end of the data, e.g., for (255,223):
80 * encode_rs(&data[0],&data[223]);
82 int encode_rs(dtype data
[], dtype bb
[]);
84 /* Reed-Solomon erasures-and-errors decoding
85 * The received block goes into data[], and a list of zero-origin
86 * erasure positions, if any, goes in eras_pos[] with a count in no_eras.
88 * The decoder corrects the symbols in place, if possible and returns
89 * the number of corrected symbols. If the codeword is illegal or
90 * uncorrectible, the data array is unchanged and -1 is returned
92 int eras_dec_rs(dtype data
[], int eras_pos
[], int no_eras
);