summaryrefslogtreecommitdiff
path: root/src/core/ao_fec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ao_fec.h')
-rw-r--r--src/core/ao_fec.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/ao_fec.h b/src/core/ao_fec.h
index db5523a3..985352dd 100644
--- a/src/core/ao_fec.h
+++ b/src/core/ao_fec.h
@@ -57,4 +57,13 @@ ao_fec_encode(uint8_t *in, uint8_t len, uint8_t *out);
uint8_t
ao_fec_interleave(uint8_t *in, uint8_t len, uint8_t *out);
+
+/*
+ * Decode data. 'in' is one byte per bit, soft decision
+ * 'out' must be len/8 bytes long
+ */
+
+uint8_t
+ao_fec_decode(uint8_t *in, int in_len, uint8_t *out);
+
#endif /* _AO_FEC_H_ */