diff options
author | XV <?@?> | 2011-03-24 22:32:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-03-25 01:16:22 +0100 |
commit | eea4fa059134253cf720c7fa2045b011723c60ef (patch) | |
tree | 34c62dcb2cef149e5644a8c4fd9760bf514900de /libavcodec/intelh263dec.c | |
parent | b14748dd7563b5cf026a198bd011f70d3af5f4e3 (diff) | |
download | ffmpeg-eea4fa059134253cf720c7fa2045b011723c60ef.tar.gz |
Intel H.263 aspect ratio processing fix.
Diffstat (limited to 'libavcodec/intelh263dec.c')
-rw-r--r-- | libavcodec/intelh263dec.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libavcodec/intelh263dec.c b/libavcodec/intelh263dec.c index 42a51e32b4..73946ce132 100644 --- a/libavcodec/intelh263dec.c +++ b/libavcodec/intelh263dec.c @@ -67,6 +67,7 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s) if (format < 6) { s->width = h263_format[format][0]; s->height = h263_format[format][1]; + s->avctx->sample_aspect_ratio.num=12;s->avctx->sample_aspect_ratio.den=11; } else { format = get_bits(&s->gb, 3); @@ -92,9 +93,14 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s) skip_bits1(&s->gb); skip_bits(&s->gb, 9); // display height if(ar == 15){ - skip_bits(&s->gb, 8); // aspect ratio - width - skip_bits(&s->gb, 8); // aspect ratio - height + s->avctx->sample_aspect_ratio.num = get_bits(&s->gb, 8); // aspect ratio - width + s->avctx->sample_aspect_ratio.den = get_bits(&s->gb, 8); // aspect ratio - height } + else { + s->avctx->sample_aspect_ratio = ff_h263_pixel_aspect[ar]; + } + if(s->avctx->sample_aspect_ratio.num == 0) + av_log(s->avctx, AV_LOG_ERROR, "Invalid aspect ratio\n"); } s->chroma_qscale= s->qscale = get_bits(&s->gb, 5); |