]> git.sesse.net Git - ffmpeg/commitdiff
hq_hqa: Fix decoding when INFO section is absent
authorVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 10 Jul 2015 14:52:00 +0000 (15:52 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 17 Jul 2015 00:49:42 +0000 (01:49 +0100)
libavcodec/hq_hqa.c

index ae378e652419e703f931e39c05efb041c64d9538..4871c59c83738e7cd456710358e88097531b11db 100644 (file)
@@ -310,9 +310,11 @@ static int hq_hqa_decode_frame(AVCodecContext *avctx, void *data,
         return AVERROR_INVALIDDATA;
     }
 
-    info_tag = bytestream2_get_le32(&ctx->gbc);
+    info_tag = bytestream2_peek_le32(&ctx->gbc);
     if (info_tag == MKTAG('I', 'N', 'F', 'O')) {
-        int info_size = bytestream2_get_le32(&ctx->gbc);
+        int info_size;
+        bytestream2_skip(&ctx->gbc, 4);
+        info_size = bytestream2_get_le32(&ctx->gbc);
         if (bytestream2_get_bytes_left(&ctx->gbc) < info_size) {
             av_log(avctx, AV_LOG_ERROR, "Invalid INFO size (%d).\n", info_size);
             return AVERROR_INVALIDDATA;