mtv: improve header check and avoid division by zero
authorVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 24 Oct 2014 12:15:36 +0000 (13:15 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Mon, 12 Jan 2015 23:05:27 +0000 (00:05 +0100)
CC: libav-stable@libav.org
Bug-Id: CID 732203 / CID 732204

libavformat/mtv.c

index 5a7f047..7ad7618 100644 (file)
@@ -96,14 +96,17 @@ static int mtv_read_header(AVFormatContext *s)
 
     /* Calculate width and height if missing from header */
 
-    if(!mtv->img_width)
+    if (!mtv->img_width && mtv->img_height > 0 && mtv->img_bpp >= 8)
         mtv->img_width=mtv->img_segment_size / (mtv->img_bpp>>3)
                         / mtv->img_height;
 
-    if(!mtv->img_height)
+    if (!mtv->img_height && mtv->img_width > 0 && mtv->img_bpp >= 8)
         mtv->img_height=mtv->img_segment_size / (mtv->img_bpp>>3)
                         / mtv->img_width;
 
+    if (!mtv->img_width || !mtv->img_height)
+        return AVERROR_INVALIDDATA;
+
     avio_skip(pb, 4);
     audio_subsegments = avio_rl16(pb);