lavc: set frame parameters after decoding only if necessary
authorJanne Grunau <janne-libav@jannau.net>
Wed, 12 Dec 2012 15:36:20 +0000 (16:36 +0100)
committerJanne Grunau <janne-libav@jannau.net>
Thu, 13 Dec 2012 20:02:42 +0000 (21:02 +0100)
Direct rendering capable decoders call get_buffer() which will set the
frame parameters.

Prevents frames with wrong parameters when a decoder outputs delayed
frames after a resolution or pixel format change.

libavcodec/utils.c

index 1185a35e9dbd2fc58464b2230c12114b97766433..b226ac0efe6990a107adc95ba5c19d0557c057b3 100644 (file)
@@ -1282,11 +1282,14 @@ int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *pi
         else {
             ret = avctx->codec->decode(avctx, picture, got_picture_ptr,
                                        avpkt);
-            picture->pkt_dts             = avpkt->dts;
-            picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
-            picture->width               = avctx->width;
-            picture->height              = avctx->height;
-            picture->format              = avctx->pix_fmt;
+            picture->pkt_dts = avpkt->dts;
+            /* get_buffer is supposed to set frame parameters */
+            if (!(avctx->codec->capabilities & CODEC_CAP_DR1)) {
+                picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
+                picture->width               = avctx->width;
+                picture->height              = avctx->height;
+                picture->format              = avctx->pix_fmt;
+            }
         }
 
         emms_c(); //needed to avoid an emms_c() call before every return;