Home | History | Annotate | Download | only in libspeex

Lines Matching full:state

43 /**Structure representing the full state of the sub-band encoder*/
46 void *st_low; /**< State of the low-band (narrowband) encoder */
98 /**Structure representing the full state of the sub-band decoder*/
101 void *st_low; /**< State of the low-band (narrowband) encoder */
132 /**Initializes encoder state*/
135 /**De-allocates encoder state resources*/
136 void sb_encoder_destroy(void *state);
139 int sb_encode(void *state, void *in, SpeexBits *bits);
142 /**Initializes decoder state*/
145 /**De-allocates decoder state resources*/
146 void sb_decoder_destroy(void *state);
149 int sb_decode(void *state, SpeexBits *bits, void *out);
151 int sb_encoder_ctl(void *state, int request, void *ptr);
153 int sb_decoder_ctl(void *state, int request, void *ptr);