summaryrefslogtreecommitdiff
path: root/src/core/ao_fec_tx.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-06-23 02:12:58 -0700
committerKeith Packard <keithp@keithp.com>2012-06-23 02:12:58 -0700
commitf7bf07dfdad260c1f219064957ef08fb480bf20f (patch)
treef32e6d0ebdcd56ba46c1ff47aa746351e38d0f58 /src/core/ao_fec_tx.c
parentff8de3af193839de4bacfd07ade7a5f9ac0bf5b3 (diff)
altos: optimize Viterbi implementation
Minimize data usage, make data arrays static Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_fec_tx.c')
-rw-r--r--src/core/ao_fec_tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ao_fec_tx.c b/src/core/ao_fec_tx.c
index bf32c506..c5f410b8 100644
--- a/src/core/ao_fec_tx.c
+++ b/src/core/ao_fec_tx.c
@@ -83,7 +83,7 @@ static const uint8_t whiten[] = {
#include "ao_whiten.h"
};
-uint8_t
+void
ao_fec_whiten(uint8_t *in, uint8_t len, uint8_t *out)
{
const uint8_t *w = whiten;