view libgsmefr/dec_create.c @ 625:d46c2e4c4392

libgsmhr1: integrate sp_enc.c, encoder main function
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 12 Mar 2026 03:54:18 +0000
parents 23656d874524
children
line wrap: on
line source

/*
 * In this module we implement allocation and initialization
 * of state structures for our GSM EFR decoder.
 */

#include <stdlib.h>
#include "gsm_efr.h"
#include "typedef.h"
#include "cnst.h"
#include "dec_state.h"

const unsigned EFR_decoder_state_size = sizeof(struct EFR_decoder_state);

struct EFR_decoder_state *EFR_decoder_create(void)
{
	struct EFR_decoder_state *st;

	st = malloc(sizeof(struct EFR_decoder_state));
	if (st)
		EFR_decoder_reset(st);
	return st;
}