]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vdpau_h264.c
Merge commit '51d8725a6e4c7f989d6f0f38b59cb54a2d72846c'
[ffmpeg] / libavcodec / vdpau_h264.c
index 1736bbd1787f91a7c1e6d1b05a9d22dc65916429..a9d0c8af9e453b6140d29d3fa469995e5ed335c0 100644 (file)
@@ -198,6 +198,7 @@ static int vdpau_h264_decode_slice(AVCodecContext *avctx,
 static int vdpau_h264_end_frame(AVCodecContext *avctx)
 {
     H264Context *h = avctx->priv_data;
+    H264SliceContext *sl = &h->slice_ctx[0];
     H264Picture *pic = h->cur_pic_ptr;
     struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private;
     int val;
@@ -206,7 +207,7 @@ static int vdpau_h264_end_frame(AVCodecContext *avctx)
     if (val < 0)
         return val;
 
-    ff_h264_draw_horiz_band(h, 0, h->avctx->height);
+    ff_h264_draw_horiz_band(h, sl, 0, h->avctx->height);
     return 0;
 }