Home
last modified time | relevance | path

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

/external/libopus/src/
Dopus_projection_decoder.c215 int decode_fec) in opus_projection_decode() argument
218 pcm, opus_projection_copy_channel_out_short, frame_size, decode_fec, 0, in opus_projection_decode()
224 int decode_fec) in opus_projection_decode() argument
227 pcm, opus_projection_copy_channel_out_short, frame_size, decode_fec, 1, in opus_projection_decode()
234 opus_int32 len, float *pcm, int frame_size, int decode_fec) in opus_projection_decode_float() argument
237 pcm, opus_projection_copy_channel_out_float, frame_size, decode_fec, 0, in opus_projection_decode_float()
Dopus_decoder.c221 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) in opus_decode_frame() argument
397 lost_flag = data == NULL ? 1 : 2 * decode_fec; in opus_decode_frame()
421 if (!decode_fec && mode != MODE_CELT_ONLY && data != NULL in opus_decode_frame()
518 celt_ret = celt_decode_with_ec(celt_dec, decode_fec ? NULL : data, in opus_decode_frame()
627 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec, in opus_decode_native() argument
637 if (decode_fec<0 || decode_fec>1) in opus_decode_native()
640 if ((decode_fec || len==0 || data==NULL) && frame_size%(st->Fs/400)!=0) in opus_decode_native()
672 if (decode_fec) in opus_decode_native()
743 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) in opus_decode() argument
747 return opus_decode_native(st, data, len, pcm, frame_size, decode_fec, 0, NULL, 0); in opus_decode()
[all …]
Dopus_multistream_decoder.c185 int decode_fec, in opus_multistream_decode_native() argument
253 …ret = opus_decode_native(dec, data, len, buf, frame_size, decode_fec, s!=st->layout.nb_streams-1, … in opus_multistream_decode_native()
377 int decode_fec in opus_multistream_decode() argument
381 pcm, opus_copy_channel_out_short, frame_size, decode_fec, 0, NULL); in opus_multistream_decode()
386 opus_int32 len, float *pcm, int frame_size, int decode_fec) in opus_multistream_decode_float() argument
389 pcm, opus_copy_channel_out_float, frame_size, decode_fec, 0, NULL); in opus_multistream_decode_float()
396 opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec) in opus_multistream_decode() argument
399 pcm, opus_copy_channel_out_short, frame_size, decode_fec, 1, NULL); in opus_multistream_decode()
408 int decode_fec in opus_multistream_decode_float() argument
412 pcm, opus_copy_channel_out_float, frame_size, decode_fec, 0, NULL); in opus_multistream_decode_float()
Dopus_private.h149 opus_val16 *pcm, int frame_size, int decode_fec, int self_delimited,
195 int decode_fec,
/external/libopus/include/
Dopus_projection.h493 int decode_fec
532 int decode_fec
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()