• Home
  • Raw
  • Download

Lines Matching refs:decode_fec

221       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()
752 opus_int32 len, float *pcm, int frame_size, int decode_fec) in opus_decode_float() argument
764 if (data != NULL && len > 0 && !decode_fec) in opus_decode_float()
775 ret = opus_decode_native(st, data, len, out, frame_size, decode_fec, 0, NULL, 0); in opus_decode_float()
789 opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec) in opus_decode() argument
802 if (data != NULL && len > 0 && !decode_fec) in opus_decode()
813 ret = opus_decode_native(st, data, len, out, frame_size, decode_fec, 0, NULL, 1); in opus_decode()
824 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) in opus_decode_float() argument
828 return opus_decode_native(st, data, len, pcm, frame_size, decode_fec, 0, NULL, 0); in opus_decode_float()