Lines Matching defs:DecoderState
178 typedef struct DecoderState { struct
179 const SpeexMode *mode;
180 int modeID; /**< ID of the decoder mode */
181 int first; /**< Is first frame */
182 int full_frame_size; /**< Length of full-band frames */
183 int is_wideband; /**< If wideband is present */
184 int count_lost; /**< Was the last frame lost? */
185 int frame_size; /**< Length of high-band frames */
186 int subframe_size; /**< Length of high-band sub-frames */
187 int nb_subframes; /**< Number of high-band sub-frames */
188 int lpc_size; /**< Order of high-band LPC analysis */
189 float last_ol_gain; /**< Open-loop gain for previous frame */
190 float *innov_save; /**< If non-NULL, innovation is copied here */
193 int last_pitch; /**< Pitch of last correctly decoded frame */
194 float last_pitch_gain; /**< Pitch gain of last correctly decoded frame */
195 uint32_t seed; /**< Seed used for random number generation */
197 int encode_submode;
221 } DecoderState; argument