Lines Matching refs:bits
124 /** Set Average Bit-Rate (ABR) to n bits per seconds */
227 typedef int (*encode_func)(void *state, void *in, SpeexBits *bits);
239 typedef int (*decode_func)(void *state, SpeexBits *bits, void *out);
308 "in". The encoded bit-stream is saved in "bits".
313 @param bits Bit-stream where the data will be written
316 int speex_encode(void *state, float *in, SpeexBits *bits);
319 "in". The encoded bit-stream is saved in "bits".
322 @param bits Bit-stream where the data will be written
325 int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits);
354 * bit-stream bits. The output speech is saved written to out.
357 * @param bits Bit-stream from which to decode the frame (NULL if the packet was lost)
361 int speex_decode(void *state, SpeexBits *bits, float *out);
364 * bit-stream bits. The output speech is saved written to out.
367 * @param bits Bit-stream from which to decode the frame (NULL if the packet was lost)
371 int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out);