Commit 4adf1fe3 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/pcm-dvd: fix incorrectly printed warning about changed block sizes

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ab184b29
......@@ -248,7 +248,7 @@ static int pcm_dvd_decode_frame(AVCodecContext *avctx, void *data,
if ((retval = pcm_dvd_parse_header(avctx, src)))
return retval;
if (s->last_block_size != s->block_size) {
if (s->last_block_size && s->last_block_size != s->block_size) {
av_log(avctx, AV_LOG_WARNING, "block_size has changed\n");
s->extra_sample_count = 0;
}
......
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