Home
last modified time | relevance | path

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

/external/libopus/src/
Dopus_decoder.c222 int audiosize; in opus_decode_frame() local
257 audiosize = st->frame_size; in opus_decode_frame()
261 audiosize = frame_size; in opus_decode_frame()
267 for (i=0;i<audiosize*st->channels;i++) in opus_decode_frame()
270 return audiosize; in opus_decode_frame()
275 if (audiosize > F20) in opus_decode_frame()
278 int ret = opus_decode_frame(st, NULL, 0, pcm, IMIN(audiosize, F20), 0); in opus_decode_frame()
285 audiosize -= ret; in opus_decode_frame()
286 } while (audiosize > 0); in opus_decode_frame()
289 } else if (audiosize < F20) in opus_decode_frame()
[all …]