summaryrefslogtreecommitdiffstats
path: root/src/fec/rs-common.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-16 11:54:00 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-16 11:58:47 +0200
commit4030943945ac5c69cb16d44c43f73105c92a2baf (patch)
treed45552d86bb54ecae62524db10fc6b53d2c0390b /src/fec/rs-common.h
parent23999721c627200ca17b0a090239315450affe75 (diff)
downloaddabmux-4030943945ac5c69cb16d44c43f73105c92a2baf.tar.gz
dabmux-4030943945ac5c69cb16d44c43f73105c92a2baf.tar.bz2
dabmux-4030943945ac5c69cb16d44c43f73105c92a2baf.zip
Add parts of ka9q libfec to src/fec/
Diffstat (limited to 'src/fec/rs-common.h')
-rw-r--r--src/fec/rs-common.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/fec/rs-common.h b/src/fec/rs-common.h
new file mode 100644
index 0000000..e64eb39
--- /dev/null
+++ b/src/fec/rs-common.h
@@ -0,0 +1,26 @@
+/* Stuff common to all the general-purpose Reed-Solomon codecs
+ * Copyright 2004 Phil Karn, KA9Q
+ * May be used under the terms of the GNU Lesser General Public License (LGPL)
+ */
+
+/* Reed-Solomon codec control block */
+struct rs {
+ int mm; /* Bits per symbol */
+ int nn; /* Symbols per block (= (1<<mm)-1) */
+ data_t *alpha_to; /* log lookup table */
+ data_t *index_of; /* Antilog lookup table */
+ data_t *genpoly; /* Generator polynomial */
+ int nroots; /* Number of generator roots = number of parity symbols */
+ int fcr; /* First consecutive root, index form */
+ int prim; /* Primitive element, index form */
+ int iprim; /* prim-th root of 1, index form */
+ int pad; /* Padding bytes in shortened block */
+};
+
+static inline int modnn(struct rs *rs,int x){
+ while (x >= rs->nn) {
+ x -= rs->nn;
+ x = (x >> rs->mm) + (x & rs->nn);
+ }
+ return x;
+}