Home
last modified time | relevance | path

Searched refs:silent_chunks (Results 1 - 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dvmdaudio.c142 int block_type, silent_chunks, audio_chunks; in vmdaudio_decode_frame() local
163 silent_chunks = 0; in vmdaudio_decode_frame()
171 silent_chunks = av_popcount(flags); in vmdaudio_decode_frame()
175 silent_chunks = 1; in vmdaudio_decode_frame()
185 if (silent_chunks + audio_chunks >= INT_MAX / avctx->block_align) in vmdaudio_decode_frame()
189 frame->nb_samples = ((silent_chunks + audio_chunks) * avctx->block_align) / in vmdaudio_decode_frame()
197 if (silent_chunks > 0) { in vmdaudio_decode_frame()
198 int silent_size = avctx->block_align * silent_chunks; in vmdaudio_decode_frame()
199 av_assert0(avctx->block_align * silent_chunks <= frame->nb_samples * avctx->ch_layout.nb_channels); in vmdaudio_decode_frame()

Completed in 1 milliseconds