From 19dc5c9cca4357ca770f117c45e8baee38bf2c36 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Sat, 23 Apr 2011 16:09:19 +0200 Subject: core/conv: Add some generic code for convolutional coding/decoding Far from perfect but suits our need thus far. The viterbi with softbit input is quite cpu-intensive. Since most received bursts are often mostly error free, you could use a less cpu intensive algorithm (Fano ?) and with hard bit input. Then only switch to viterbi soft bit input if the channel is bad enough to justify it. Soft output is not implemented as its usefulness for the block coding is limited. Signed-off-by: Sylvain Munaut --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index c5c8a21d..a0d639ca 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -14,7 +14,7 @@ libosmocore_la_SOURCES = timer.c select.c signal.c msgb.c bits.c \ write_queue.c utils.c \ logging.c logging_syslog.c rate_ctr.c \ gsmtap_util.c crc16.c panic.c backtrace.c \ - process.c + process.c conv.c if ENABLE_PLUGIN libosmocore_la_SOURCES += plugin.c -- cgit v1.2.3