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 --- include/osmocom/core/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/osmocom/core/Makefile.am') diff --git a/include/osmocom/core/Makefile.am b/include/osmocom/core/Makefile.am index 6109f478..b21e0476 100644 --- a/include/osmocom/core/Makefile.am +++ b/include/osmocom/core/Makefile.am @@ -3,7 +3,7 @@ osmocore_HEADERS = signal.h linuxlist.h timer.h select.h msgb.h bits.h \ gsmtap.h write_queue.h \ logging.h rate_ctr.h gsmtap_util.h \ plugin.h crc16.h panic.h process.h msgfile.h \ - backtrace.h + backtrace.h conv.h if ENABLE_TALLOC osmocore_HEADERS += talloc.h -- cgit v1.2.3