view libtest/tw5reader.c @ 605:63f774192906

gsmhr_decoder_twts002_in(): set BFI=1 SID=1 for invalid SID When a received TW-TS-002 RTP payload indicates invalid SID, which of the 3 possible BFI/SID combinations should we pass to our internal ETSI-based speech decoder or TFO engine? Our original code passed BFI=0 SID=1, but upon further reflection, BFI=1 SID=1 is a better choice. In the corner case where received invalid SID is fed to a full decoder in homed state, setting BFI=1 allows that decoder to emit zeros on PCM and stay homed, instead of launching into full decoding.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Dec 2025 21:01:46 +0000
parents 3c6bf0d26ee7
children
line wrap: on
line source

/*
 * Here we implement our twts005_read_frame() function.
 */

#include <ctype.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <strings.h>
#include "tw5reader.h"

static int decode_hex_digit(char c)
{
	if (isdigit(c))
		return c - '0';
	else if (isupper(c))
		return c - 'A' + 10;
	else
		return c - 'a' + 10;
}

int twts005_read_frame(FILE *hexf, unsigned *lineno, uint8_t *frame,
			unsigned *lenp)
{
	char linebuf[82];
	char *cp, *np;
	uint8_t *dp;
	unsigned len;

	for (;;) {
		if (!fgets(linebuf, sizeof linebuf, hexf))
			return 0;
		(*lineno)++;
		if (!index(linebuf, '\n'))
			return -2;
		for (cp = linebuf; isspace(*cp); cp++)
			;
		if (*cp != '\0' && *cp != '#')
			break;
	}
	for (np = cp; *cp && !isspace(*cp); cp++)
		;
	if (*cp)
		*cp++ = '\0';
	while (isspace(*cp))
		cp++;
	if (*cp != '\0' && *cp != '#')
		return -1;
	if (!strcasecmp(np, "NULL")) {
		*lenp = 0;
		return 1;
	}

	dp = frame;
	len = 0;
	for (cp = np; *cp; cp += 2) {
		if (!isxdigit(cp[0]) || !isxdigit(cp[1]))
			return -1;
		*dp++ = (decode_hex_digit(cp[0]) << 4) |
			decode_hex_digit(cp[1]);
		len++;
	}
	*lenp = len;
	return 1;
}