view libgsmhr1/dec_state.h @ 595:1e75556ab6c0

libgsmhr1: integrate helper functions from sp_dec.c
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Dec 2025 04:05:16 +0000
parents libgsmhr1/sp_dec.h@83d46a16db1b
children 8e4ecdfadf5a
line wrap: on
line source

/*
 * This library-internal header file provides definition for
 * struct gsmhr_decoder_state, the state structure for our speech
 * decoder engine - the full endpoint version, as opposed to TFO
 * transform.
 */

#ifndef dec_state_h
#define dec_state_h

#include "typedefs.h"
#include "rxfe.h"

struct gsmhr_decoder_state {
	struct gsmhr_rxfe_state rxfe;
	int is_homed;
};

#endif