Lines Matching refs:audiosize
238 int audiosize; in opus_decode_frame() local
275 audiosize = st->frame_size; in opus_decode_frame()
280 audiosize = frame_size; in opus_decode_frame()
287 for (i=0;i<audiosize*st->channels;i++) in opus_decode_frame()
290 return audiosize; in opus_decode_frame()
295 if (audiosize > F20) in opus_decode_frame()
298 int ret = opus_decode_frame(st, NULL, 0, pcm, IMIN(audiosize, F20), 0); in opus_decode_frame()
305 audiosize -= ret; in opus_decode_frame()
306 } while (audiosize > 0); in opus_decode_frame()
309 } else if (audiosize < F20) in opus_decode_frame()
311 if (audiosize > F10) in opus_decode_frame()
312 audiosize = F10; in opus_decode_frame()
313 else if (mode != MODE_SILK_ONLY && audiosize > F5 && audiosize < F10) in opus_decode_frame()
314 audiosize = F5; in opus_decode_frame()
344 opus_decode_frame(st, NULL, 0, pcm_transition, IMIN(F5, audiosize), 0); in opus_decode_frame()
346 if (audiosize > frame_size) in opus_decode_frame()
352 frame_size = audiosize; in opus_decode_frame()
375 st->DecControl.payloadSize_ms = IMAX(10, 1000 * audiosize / st->Fs); in opus_decode_frame()
464 opus_decode_frame(st, NULL, 0, pcm_transition, IMIN(F5, audiosize), 0); in opus_decode_frame()
576 if (audiosize >= F5) in opus_decode_frame()
617 if (OPUS_CHECK_ARRAY(pcm, audiosize*st->channels)) in opus_decode_frame()
618 OPUS_PRINT_INT(audiosize); in opus_decode_frame()
622 return celt_ret < 0 ? celt_ret : audiosize; in opus_decode_frame()