view libtest/roberead.c @ 586:b21ea4ab586d

libgsmhr1: update for TW-TS-002 version 1.2.0 The component of libgsmhr1 being changed is RTP input functions; the change is accepting FT=1 (invalid SID) frames both with and without payload data bits.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 10 Mar 2025 02:03:31 +0000
parents 9814041e8096
children
line wrap: on
line source

/*
 * Here we implement our PCM read helper function for "robe" format.
 */

#include <stdio.h>
#include <stdint.h>
#include "roberead.h"

int robe_get_pcm_block(FILE *inf, int16_t *pcm)
{
	uint8_t bytes[320], *dp;
	int cc, i;

	cc = fread(bytes, 1, 320, inf);
	cc >>= 1;
	dp = bytes;
	for (i = 0; i < cc; i++) {
		pcm[i] = (dp[0] << 8) | dp[1];
		dp += 2;
	}
	while (i < 160)
		pcm[i++] = 0;
	return cc;
}