]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/intelh263dec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / intelh263dec.c
index 836e98ee881fb8c13589815b4bd46e31113f5296..2b3be962c6f55a59812c7303678055f64f9ed023 100644 (file)
@@ -65,8 +65,8 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s)
     s->pb_frame = get_bits1(&s->gb);
 
     if (format < 6) {
-        s->width = h263_format[format][0];
-        s->height = h263_format[format][1];
+        s->width = ff_h263_format[format][0];
+        s->height = ff_h263_format[format][1];
         s->avctx->sample_aspect_ratio.num = 12;
         s->avctx->sample_aspect_ratio.den = 11;
     } else {
@@ -136,4 +136,3 @@ AVCodec ff_h263i_decoder = {
     .long_name = NULL_IF_CONFIG_SMALL("Intel H.263"),
     .pix_fmts= ff_pixfmt_list_420,
 };
-