summaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-03-06 18:19:52 +0100
committerLuca Barbato <lu_zero@gentoo.org>2014-05-11 14:59:07 +0200
commita871ef0cc936612bdb0e643196be72efcf0c8986 (patch)
tree6120d3b308ed2f7f660c45ee32aa57afa4f2a0d5 /libavcodec/avcodec.h
parent08bb2567586599d62a282c4cd31567a0807f3d92 (diff)
downloadffmpeg-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.h4
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;
/**
OpenPOWER on IntegriCloud