view frtest/encode.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 f00925b533b7
children
line wrap: on
line source

/*
 * This file is the main module for gsmfr-encode utility.
 */

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include "../libgsmfr2/tw_gsmfr.h"
#include "../libtest/wavreader.h"
#include "../libtest/wavrdhelp.h"

main(argc, argv)
	char **argv;
{
	void *wav;
	FILE *binf;
	struct gsmfr_0610_state *enc_state;
	int16_t pcm[160];
	uint8_t frame[33];
	int rc;

	if (argc != 3) {
		fprintf(stderr, "usage: %s input.wav output.gsm\n", argv[0]);
		exit(1);
	}
	wav = wav_read_open(argv[1]);
	if (!wav) {
		perror(argv[1]);
		exit(1);
	}
	rc = wavrd_check_header(wav, argv[1]);
	if (rc < 0)
		exit(1);	/* error msg already printed */
	binf = fopen(argv[2], "w");
	if (!binf) {
		perror(argv[2]);
		exit(1);
	}
	enc_state = gsmfr_0610_create();
	if (!enc_state) {
		fprintf(stderr, "gsmfr_0610_create() failed!\n");
		exit(1);
	}
	for (;;) {
		rc = wavrd_get_pcm_block(wav, pcm);
		if (!rc)
			break;
		gsmfr_0610_encode_frame(enc_state, pcm, frame);
		fwrite(frame, 1, sizeof frame, binf);
	}
	fclose(binf);
	exit(0);
}