diff --git a/libavcodec/rpza.c b/libavcodec/rpza.c index 9509d306c8..23e2a75d9d 100644 --- a/libavcodec/rpza.c +++ b/libavcodec/rpza.c @@ -94,11 +94,11 @@ static void rpza_decode_stream(RpzaContext *s) chunk_size = bytestream2_get_be32(&s->gb) & 0x00FFFFFF; /* If length mismatch use size from MOV file and try to decode anyway */ - if (chunk_size != bytestream2_get_bytes_left(&s->gb) - 4) + if (chunk_size != bytestream2_get_bytes_left(&s->gb) + 4) av_log(s->avctx, AV_LOG_WARNING, "MOV chunk size %d != encoded chunk size %d\n", chunk_size, - bytestream2_get_bytes_left(&s->gb) - 4 + bytestream2_get_bytes_left(&s->gb) + 4 ); /* Number of 4x4 blocks in frame. */