view libgsmfr2/ed_state.c @ 602:72cdae602d6e

libgsmhr1/dec_func.c: rm unused static functions In the original code, sp_dec.c held two kinds of functions: those needed only as part of the decoder, and those used by both decoder and encoder engines. In this library, we have moved the latter class of functions to dec_func.c module. Almost all static functions from the original sp_dec.c, with the exception of aToRc(), are needed only on sp_dec.c side of the new divide - remove them from dec_func.c, where they became dead code.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Dec 2025 18:58:22 +0000
parents 3a617e4e9b27
children
line wrap: on
line source

/*
 * In this module we implement allocation and initialization
 * of state structures for our GSM 06.10 encoder & decoder
 * based on libgsm from TU-Berlin.
 */

#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "tw_gsmfr.h"
#include "typedef.h"
#include "ed_state.h"

const unsigned gsmfr_0610_state_size = sizeof(struct gsmfr_0610_state);

struct gsmfr_0610_state *gsmfr_0610_create(void)
{
	struct gsmfr_0610_state *st;

	st = malloc(sizeof(struct gsmfr_0610_state));
	if (st)
		gsmfr_0610_reset(st);
	return st;
}

void gsmfr_0610_reset(struct gsmfr_0610_state *st)
{
	memset(st, 0, sizeof(struct gsmfr_0610_state));
	st->nrp = 40;
}