]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vdpau_mpeg4.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / vdpau_mpeg4.c
index 282796eafad24b1d2ae21202bd5126604929f504..d2d892ccad60821873b3799af8e528a67cb56fad 100644 (file)
@@ -46,13 +46,13 @@ static int vdpau_mpeg4_start_frame(AVCodecContext *avctx,
 
     switch (s->pict_type) {
     case AV_PICTURE_TYPE_B:
-        ref = ff_vdpau_get_surface_id(&s->next_picture);
+        ref = ff_vdpau_get_surface_id(&s->next_picture.f);
         assert(ref != VDP_INVALID_HANDLE);
         info->backward_reference = ref;
         info->vop_coding_type    = 2;
         /* fall-through */
     case AV_PICTURE_TYPE_P:
-        ref = ff_vdpau_get_surface_id(&s->last_picture);
+        ref = ff_vdpau_get_surface_id(&s->last_picture.f);
         assert(ref != VDP_INVALID_HANDLE);
         info->forward_reference  = ref;
     }