diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libgsmhr1/dec_state.h	Thu Dec 04 04:05:16 2025 +0000
@@ -0,0 +1,19 @@
+/*
+ * 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