diff libgsmefr/dec_state.h @ 42:ba044871c9dd

libgsmefr: beginning of encoder and decoder state structures
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 25 Nov 2022 01:43:16 +0000
parents
children dd79ec84283d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libgsmefr/dec_state.h	Fri Nov 25 01:43:16 2022 +0000
@@ -0,0 +1,11 @@
+/*
+ * In this header file we define our decoder state structure.
+ * This decoder state structure is internal to libgsmefr,
+ * NOT part of our external public interface!
+ */
+
+struct EFR_decoder_state {
+	/* from agc.c */
+	Word16 past_gain;
+	/* to be continued */
+};