X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Fffmpeg%2Flibavcodec%2Frpza.c;h=732b09ac9483913f591e122ca82b3814f68788ca;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=aac437e41c949700cee13faf744aa80a9260a5c4;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/ffmpeg/libavcodec/rpza.c b/src/third_party/ffmpeg/libavcodec/rpza.c index aac437e..732b09a 100644 --- a/src/third_party/ffmpeg/libavcodec/rpza.c +++ b/src/third_party/ffmpeg/libavcodec/rpza.c @@ -1,6 +1,6 @@ /* * Quicktime Video (RPZA) Video Decoder - * Copyright (C) 2003 the ffmpeg project + * Copyright (c) 2003 The FFmpeg Project * * This file is part of FFmpeg. * @@ -94,8 +94,12 @@ 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) - av_log(s->avctx, AV_LOG_WARNING, "MOV chunk size != encoded chunk size\n"); + 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 + ); /* Number of 4x4 blocks in frame. */ total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4);