Home
last modified time | relevance | path

Searched refs:decode_fec (Results 1 – 6 of 6) sorted by relevance

/external/libopus/src/
Dopus_multistream_decoder.c191 int decode_fec, in opus_multistream_decode_native() argument
251 …ret = opus_decode_native(dec, data, len, buf, frame_size, decode_fec, s!=st->layout.nb_streams-1, … in opus_multistream_decode_native()
371 int decode_fec in opus_multistream_decode() argument
375 pcm, opus_copy_channel_out_short, frame_size, decode_fec, 0); in opus_multistream_decode()
380 opus_int32 len, float *pcm, int frame_size, int decode_fec) in opus_multistream_decode_float() argument
383 pcm, opus_copy_channel_out_float, frame_size, decode_fec, 0); in opus_multistream_decode_float()
390 opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec) in opus_multistream_decode() argument
393 pcm, opus_copy_channel_out_short, frame_size, decode_fec, 1); in opus_multistream_decode()
402 int decode_fec in opus_multistream_decode_float() argument
406 pcm, opus_copy_channel_out_float, frame_size, decode_fec, 0); in opus_multistream_decode_float()
Dopus_decoder.c205 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) in opus_decode_frame() argument
363 lost_flag = data == NULL ? 1 : 2 * decode_fec; in opus_decode_frame()
387 if (!decode_fec && mode != MODE_CELT_ONLY && data != NULL in opus_decode_frame()
479 celt_ret = celt_decode_with_ec(celt_dec, decode_fec ? NULL : data, in opus_decode_frame()
585 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec, in opus_decode_native() argument
594 if (decode_fec<0 || decode_fec>1) in opus_decode_native()
597 if ((decode_fec || len==0 || data==NULL) && frame_size%(st->Fs/400)!=0) in opus_decode_native()
629 if (decode_fec) in opus_decode_native()
700 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) in opus_decode() argument
704 return opus_decode_native(st, data, len, pcm, frame_size, decode_fec, 0, NULL, 0); in opus_decode()
[all …]
Dopus_private.h110 opus_val16 *pcm, int frame_size, int decode_fec, int self_delimited,
/external/libopus/include/
Dopus_multistream.h591 int decode_fec
629 int decode_fec
Dopus.h468 int decode_fec
493 int decode_fec
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.c321 int16_t* decoded, int16_t* audio_type, int decode_fec) { in DecodeNative() argument
323 (opus_int16*)decoded, frame_size, decode_fec); in DecodeNative()