[FFmpeg-cvslog] riff: retry reading metadata without padding if it fails with

Michael Niedermayer git at videolan.org
Mon Dec 10 00:55:15 CET 2012


ffmpeg | branch: release/0.9 | Michael Niedermayer <michaelni at gmx.at> | Thu Oct 18 04:58:20 2012 +0200| [455b98b7775c68fd02adbeec9681e35ad725a838] | committer: Carl Eugen Hoyos

riff: retry reading metadata without padding if it fails with

Fixes Ticket1821

Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit d0c27e88d2bb495d61bd32f41769f767a0c2a802)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=455b98b7775c68fd02adbeec9681e35ad725a838
---

 libavformat/riff.c |    9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/libavformat/riff.c b/libavformat/riff.c
index 74f384d..59dd5df 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -701,8 +701,13 @@ int ff_read_riff_info(AVFormatContext *s, int64_t size)
         chunk_code = avio_rl32(pb);
         chunk_size = avio_rl32(pb);
         if (chunk_size > end || end - chunk_size < cur || chunk_size == UINT_MAX) {
-            av_log(s, AV_LOG_ERROR, "too big INFO subchunk\n");
-            return AVERROR_INVALIDDATA;
+            avio_seek(pb, -9, SEEK_CUR);
+            chunk_code = avio_rl32(pb);
+            chunk_size = avio_rl32(pb);
+            if (chunk_size > end || end - chunk_size < cur || chunk_size == UINT_MAX) {
+                av_log(s, AV_LOG_ERROR, "too big INFO subchunk\n");
+                return AVERROR_INVALIDDATA;
+            }
         }
 
         chunk_size += (chunk_size & 1);



More information about the ffmpeg-cvslog mailing list