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/avcodec.h | |
parent | 08bb2567586599d62a282c4cd31567a0807f3d92 (diff) | |
download | ffmpeg-streaming-a871ef0cc936612bdb0e643196be72efcf0c8986.zip ffmpeg-streaming-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/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f720589..df061c1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2987,13 +2987,13 @@ typedef struct AVHWAccel { int (*end_frame)(AVCodecContext *avctx); /** - * Size of HW accelerator private data. + * Size of per-frame hardware accelerator private data. * * Private data is allocated with av_mallocz() before * AVCodecContext.get_buffer() and deallocated after * AVCodecContext.release_buffer(). */ - int priv_data_size; + int frame_priv_data_size; } AVHWAccel; /** |