comparison 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
comparison
equal deleted inserted replaced
594:83d46a16db1b 595:1e75556ab6c0
1 /*
2 * This library-internal header file provides definition for
3 * struct gsmhr_decoder_state, the state structure for our speech
4 * decoder engine - the full endpoint version, as opposed to TFO
5 * transform.
6 */
7
8 #ifndef dec_state_h
9 #define dec_state_h
10
11 #include "typedefs.h"
12 #include "rxfe.h"
13
14 struct gsmhr_decoder_state {
15 struct gsmhr_rxfe_state rxfe;
16 int is_homed;
17 };
18
19 #endif