view miscutil/raw2wav.c @ 242:f081a6850fb5

libgsmfrp: new refined implementation The previous implementation exhibited the following defects, which are now fixed: 1) The last received valid SID was cached forever for the purpose of handling future invalid SIDs - we could have received some valid SID ages ago, then lots of speech or NO_DATA, and if we then get an invalid SID, we would resurrect the last valid SID from ancient history - a bad design. In our new design, we handle invalid SID based on the current state, much like BFI. 2) GSM 06.11 spec says clearly that after the second lost SID (received BFI=1 && TAF=1 in CN state) we need to gradually decrease the output level, rather than jump directly to emitting silence frames - we previously failed to implement such logic. 3) Per GSM 06.12 section 5.2, Xmaxc should be the same in all 4 subframes in a SID frame. What should we do if we receive an otherwise valid SID frame with different Xmaxc? Our previous approach would replicate this Xmaxc oddity in every subsequent generated CN frame, which is rather bad. In our new design, the very first CN frame (which can be seen as a transformation of the SID frame itself) retains the original 4 distinct Xmaxc, but all subsequent CN frames are based on the Xmaxc from the last subframe of the most recent SID.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 09 May 2023 05:16:31 +0000
parents c1dc094f0821
children
line wrap: on
line source

/*
 * This program reads a 16-bit linear PCM speech recording in raw format
 * (either BE or LE) and converts it into WAV container format.
 */

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "../libtest/wavwriter.h"

static void
swap_bytes(bytes, cc)
	uint8_t *bytes;
	unsigned cc;
{
	uint8_t *dp, *endp;
	int t;

	dp = bytes;
	endp = bytes + cc;
	while (dp < endp) {
		t = dp[0];
		dp[0] = dp[1];
		dp[1] = t;
		dp += 2;
	}
}

main(argc, argv)
	char **argv;
{
	int big_endian;
	FILE *binf;
	void *wav;
	uint8_t bytes[320];
	int cc;

	if (argc != 4) {
usage:		fprintf(stderr, "usage: %s be|le input.raw output.wav\n",
			argv[0]);
		exit(1);
	}
	if (!strcmp(argv[1], "be"))
		big_endian = 1;
	else if (!strcmp(argv[1], "le"))
		big_endian = 0;
	else
		goto usage;
	binf = fopen(argv[2], "r");
	if (!binf) {
		perror(argv[2]);
		exit(1);
	}
	wav = wav_write_open(argv[3], 8000, 16, 1);
	if (!wav) {
		perror(argv[3]);
		exit(1);
	}
	for (;;) {
		cc = fread(bytes, 1, sizeof bytes, binf);
		if (cc <= 0)
			break;
		if (cc & 1) {
			fprintf(stderr, "error: %s has odd number of bytes\n",
				argv[2]);
			exit(1);
		}
		if (big_endian)
			swap_bytes(bytes, cc);
		wav_write_data(wav, bytes, cc);
	}
	wav_write_close(wav);
	exit(0);
}