pub unsafe extern "C" fn speex_decode_int(
state: *mut c_void,
bits: *mut SpeexBits,
out: *mut spx_int16_t,
) -> c_intExpand description
Uses an existing decoder state to decode one frame of speech from bit-stream bits. The output speech is saved written to out.
@param state Decoder state @param bits Bit-stream from which to decode the frame (NULL if the packet was lost) @param out Where to write the decoded frame @return return status (0 for no error, -1 for end of stream, -2 corrupt stream)