Commit 16e30b7a authored by Michael Niedermayer's avatar Michael Niedermayer

Do not reject odd width/height.

Fixes issue371.

Originally committed as revision 13377 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d7dc90e4
...@@ -1966,8 +1966,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx, ...@@ -1966,8 +1966,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx,
width = get_bits(&s->gb, 12); width = get_bits(&s->gb, 12);
height = get_bits(&s->gb, 12); height = get_bits(&s->gb, 12);
if (width <= 0 || height <= 0 || if (width <= 0 || height <= 0)
(width % 2) != 0 || (height % 2) != 0)
return -1; return -1;
s->aspect_ratio_info= get_bits(&s->gb, 4); s->aspect_ratio_info= get_bits(&s->gb, 4);
if (s->aspect_ratio_info == 0) { if (s->aspect_ratio_info == 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment