diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-03-06 18:19:52 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-05-11 14:59:07 +0200 |
commit | a871ef0cc936612bdb0e643196be72efcf0c8986 (patch) | |
tree | 6120d3b308ed2f7f660c45ee32aa57afa4f2a0d5 /libavcodec/dxva2_h264.c | |
parent | 08bb2567586599d62a282c4cd31567a0807f3d92 (diff) | |
download | ffmpeg-a871ef0cc936612bdb0e643196be72efcf0c8986.tar.gz |
hwaccel: Rename priv_data_size to frame_priv_data_size
This describes more accurately what this field is for.
Diffstat (limited to 'libavcodec/dxva2_h264.c')
-rw-r--r-- | libavcodec/dxva2_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dxva2_h264.c b/libavcodec/dxva2_h264.c index d80bd14e87..fa205c42d7 100644 --- a/libavcodec/dxva2_h264.c +++ b/libavcodec/dxva2_h264.c @@ -465,5 +465,5 @@ AVHWAccel ff_h264_dxva2_hwaccel = { .start_frame = dxva2_h264_start_frame, .decode_slice = dxva2_h264_decode_slice, .end_frame = dxva2_h264_end_frame, - .priv_data_size = sizeof(struct dxva2_picture_context), + .frame_priv_data_size = sizeof(struct dxva2_picture_context), }; |