view amrdiff/readone-common.c @ 55:f27bc1e17311

fr-sid/goodsp-frame41.gsmx: starting point This 33-byte binary file contains frame #41 from good_sp.cod from GSM 06.32 test sequence set, converted from ETSI *.cod format into our gsmx format. This frame is an example of a real FRv1 SID.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 22 Aug 2024 05:00:08 +0000
parents 75ba83624a29
children
line wrap: on
line source

/*
 * The function in this module is common between readone-amr and readone-efr.
 */

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>

emit_frame244(bits)
	uint8_t *bits;
{
	unsigned n;

	for (n = 0; n < 244; n++) {
		printf("%u,", bits[n]);
		if (n % 40 == 39 || n == 243)
			putchar('\n');
	}
}