Commit 7d0a1975 authored by Rodger Combs's avatar Rodger Combs Committed by Michael Niedermayer

lavc/adpcm: THP: set approx_nb_samples correctly

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f76d7d4b
......@@ -654,11 +654,9 @@ static int get_nb_samples(AVCodecContext *avctx, GetByteContext *gb,
buf_size -= 8 + 36 * ch;
buf_size /= ch;
nb_samples = buf_size / 8 * 14;
if (buf_size % 8 > 1) {
if (buf_size % 8 > 1)
nb_samples += (buf_size % 8 - 1) * 2;
if (*coded_samples & 1)
nb_samples -= 1;
}
*approx_nb_samples = 1;
break;
case AV_CODEC_ID_ADPCM_AFC:
nb_samples = buf_size / (9 * ch) * 16;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment