]> git.sesse.net Git - ffmpeg/commitdiff
fixing aspect (hopefully, i couldnt reproduce the bug)
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 6 Dec 2002 15:01:48 +0000 (15:01 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 6 Dec 2002 15:01:48 +0000 (15:01 +0000)
Originally committed as revision 1317 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mjpeg.c

index eed155c1962e8c0d90fa48e8010f4a91f464c43e..2e6dd8f0be67359ef7303dd8f0f5d5059ee958e2 100644 (file)
@@ -1184,7 +1184,10 @@ static int mjpeg_decode_app(MJpegDecodeContext *s)
            int y_density = get_bits(&s->gb, 16);
 
             //MN: needs to be checked
-            s->avctx->aspect_ratio= s->width*y_density/((float)s->height*x_density);
+            if(x_density)
+                s->avctx->aspect_ratio= s->width*y_density/((float)s->height*x_density);
+            else
+                s->avctx->aspect_ratio= 0.0;
        }
        else
        {