1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

fixing aspect (hopefully, i couldnt reproduce the bug)

Originally committed as revision 1317 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2002-12-06 15:01:48 +00:00
parent 0d1e924668
commit 706fc4dea6

View File

@ -1184,7 +1184,10 @@ static int mjpeg_decode_app(MJpegDecodeContext *s)
int y_density = get_bits(&s->gb, 16); int y_density = get_bits(&s->gb, 16);
//MN: needs to be checked //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 else
{ {