diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 14:25:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 14:25:26 +0200 |
commit | c3b29023207850fa3b5b6b4dcb8e4940b86abb83 (patch) | |
tree | 36d9ce6c2f8647b333e7cc025d39074ae00c8480 /libavcodec/vdpau_h264.c | |
parent | 50fb8c1114b9c2b7d299cbc17a18a457d12069a8 (diff) | |
parent | 2852740e23f91d6775714d7cc29b9a73e1111ce0 (diff) | |
download | ffmpeg-c3b29023207850fa3b5b6b4dcb8e4940b86abb83.tar.gz |
Merge commit '2852740e23f91d6775714d7cc29b9a73e1111ce0'
* commit '2852740e23f91d6775714d7cc29b9a73e1111ce0':
vdpau: store picture data in picture's rather than codec's context
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vdpau_h264.c')
-rw-r--r-- | libavcodec/vdpau_h264.c | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/libavcodec/vdpau_h264.c b/libavcodec/vdpau_h264.c index ad1aff0acb..06a9582913 100644 --- a/libavcodec/vdpau_h264.c +++ b/libavcodec/vdpau_h264.c @@ -66,8 +66,8 @@ static void vdpau_h264_set_rf(VdpReferenceFrameH264 *rf, Picture *pic, static void vdpau_h264_set_reference_frames(AVCodecContext *avctx) { H264Context * const h = avctx->priv_data; - AVVDPAUContext *hwctx = avctx->hwaccel_context; - VdpPictureInfoH264 *info = &hwctx->info.h264; + struct vdpau_picture_context *pic_ctx = h->cur_pic_ptr->hwaccel_picture_private; + VdpPictureInfoH264 *info = &pic_ctx->info.h264; int list; VdpReferenceFrameH264 *rf = &info->referenceFrames[0]; @@ -118,9 +118,9 @@ static int vdpau_h264_start_frame(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size) { H264Context * const h = avctx->priv_data; - AVVDPAUContext *hwctx = avctx->hwaccel_context; - VdpPictureInfoH264 *info = &hwctx->info.h264; Picture *pic = h->cur_pic_ptr; + struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private; + VdpPictureInfoH264 *info = &pic_ctx->info.h264; /* init VdpPictureInfoH264 */ info->slice_count = 0; @@ -161,7 +161,7 @@ static int vdpau_h264_start_frame(AVCodecContext *avctx, vdpau_h264_set_reference_frames(avctx); - return ff_vdpau_common_start_frame(avctx, buffer, size); + return ff_vdpau_common_start_frame(pic, buffer, size); } static const uint8_t start_code_prefix[3] = { 0x00, 0x00, 0x01 }; @@ -169,18 +169,20 @@ static const uint8_t start_code_prefix[3] = { 0x00, 0x00, 0x01 }; static int vdpau_h264_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size) { - AVVDPAUContext *hwctx = avctx->hwaccel_context; + H264Context *h = avctx->priv_data; + Picture *pic = h->cur_pic_ptr; + struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private; int val; - val = ff_vdpau_add_buffer(avctx, start_code_prefix, 3); + val = ff_vdpau_add_buffer(pic, start_code_prefix, 3); if (val) return val; - val = ff_vdpau_add_buffer(avctx, buffer, size); + val = ff_vdpau_add_buffer(pic, buffer, size); if (val) return val; - hwctx->info.h264.slice_count++; + pic_ctx->info.h264.slice_count++; return 0; } @@ -188,13 +190,15 @@ static int vdpau_h264_end_frame(AVCodecContext *avctx) { AVVDPAUContext *hwctx = avctx->hwaccel_context; H264Context *h = avctx->priv_data; - VdpVideoSurface surf = ff_vdpau_get_surface_id(h->cur_pic_ptr); + Picture *pic = h->cur_pic_ptr; + struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private; + VdpVideoSurface surf = ff_vdpau_get_surface_id(pic); - hwctx->render(hwctx->decoder, surf, (void *)&hwctx->info, - hwctx->bitstream_buffers_used, hwctx->bitstream_buffers); + hwctx->render(hwctx->decoder, surf, (void *)&pic_ctx->info, + pic_ctx->bitstream_buffers_used, pic_ctx->bitstream_buffers); ff_h264_draw_horiz_band(h, 0, h->avctx->height); - hwctx->bitstream_buffers_used = 0; + av_freep(&pic_ctx->bitstream_buffers); return 0; } @@ -207,4 +211,5 @@ AVHWAccel ff_h264_vdpau_hwaccel = { .start_frame = vdpau_h264_start_frame, .end_frame = vdpau_h264_end_frame, .decode_slice = vdpau_h264_decode_slice, + .priv_data_size = sizeof(struct vdpau_picture_context), }; |