diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-11 23:49:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-11 23:49:13 +0200 |
commit | fa0f7c024e90a5337892cbc3b78e936ba5d25cf3 (patch) | |
tree | 8e83e3ad53663a6bb0bbf6b381d6f1a9b82521ec /libavcodec/vdpau_h264.c | |
parent | 8d19dd91a51c296c92a9d94ab9541a3cb7316bab (diff) | |
parent | a871ef0cc936612bdb0e643196be72efcf0c8986 (diff) | |
download | ffmpeg-fa0f7c024e90a5337892cbc3b78e936ba5d25cf3.tar.gz |
Merge commit 'a871ef0cc936612bdb0e643196be72efcf0c8986'
* commit 'a871ef0cc936612bdb0e643196be72efcf0c8986':
hwaccel: Rename priv_data_size to frame_priv_data_size
Conflicts:
libavcodec/avcodec.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vdpau_h264.c')
-rw-r--r-- | libavcodec/vdpau_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vdpau_h264.c b/libavcodec/vdpau_h264.c index b4aac8764b..05a41d0402 100644 --- a/libavcodec/vdpau_h264.c +++ b/libavcodec/vdpau_h264.c @@ -234,5 +234,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), + .frame_priv_data_size = sizeof(struct vdpau_picture_context), }; |