osmo-tetra/src/lower_mac/viterbi_tch.c

72 lines
1.9 KiB
C

/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
*
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdint.h>
#include <string.h>
#include <osmocom/core/conv.h>
#include <lower_mac/viterbi_tch.h>
/*
* G1 = 1 + D + D2 + D3 + D4
* G2 = 1 + D + D3 + D4
* G3 = 1 + D2 + D4
*/
static const uint8_t conv_tch_next_output[][2] = {
{ 0, 7 }, { 6, 1 }, { 5, 2 }, { 3, 4 },
{ 6, 1 }, { 0, 7 }, { 3, 4 }, { 5, 2 },
{ 7, 0 }, { 1, 6 }, { 2, 5 }, { 4, 3 },
{ 1, 6 }, { 7, 0 }, { 4, 3 }, { 2, 5 },
};
static const uint8_t conv_tch_next_state[][2] = {
{ 0, 1 }, { 2, 3 }, { 4, 5 }, { 6, 7 },
{ 8, 9 }, { 10, 11 }, { 12, 13 }, { 14, 15 },
{ 0, 1 }, { 2, 3 }, { 4, 5 }, { 6, 7 },
{ 8, 9 }, { 10, 11 }, { 12, 13 }, { 14, 15 },
};
static const struct osmo_conv_code conv_tch = {
.N = 4,
.K = 5,
.next_output = conv_tch_next_output,
.next_state = conv_tch_next_state,
};
int conv_tch_decode(int8_t *input, uint8_t *output, int n)
{
struct osmo_conv_decoder decoder;
int rv, l;
osmo_conv_decode_init(&decoder, &conv_tch, n);
l = osmo_conv_decode_scan(&decoder, input, n);
l = osmo_conv_decode_finish(&decoder, &input[l]);
rv = osmo_conv_decode_get_output(&decoder, output, 1);
osmo_conv_decode_deinit(&decoder);
return rv;
}