view libgsmefr/enc_create.c @ 109:2361a7d8c1eb

libgsmfrp: randomize grid position params when muting speech, following GSM 06.11 example solution in more detail
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 28 Nov 2022 04:15:20 +0000
parents 722959d9410f
children
line wrap: on
line source

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

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

struct EFR_encoder_state *EFR_encoder_create(int dtx)
{
	struct EFR_encoder_state *st;

	st = malloc(sizeof(struct EFR_encoder_state));
	if (st)
		EFR_encoder_reset(st, dtx);
	return st;
}