diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-03-06 18:37:42 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-05-11 14:59:07 +0200 |
commit | dd2d3b766b20196d0b65a82e3d897ccecbf7adb8 (patch) | |
tree | 11260988722d5782c3797be3f0c5880a091a4830 /libavcodec/internal.h | |
parent | ebc29519d1634bfeb386c20a5d8a52837aae2436 (diff) | |
download | ffmpeg-dd2d3b766b20196d0b65a82e3d897ccecbf7adb8.tar.gz |
lavc: Add hwaccel private data and init/uninit callbacks
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 78af94ecc4..6aaaf4c2cb 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -95,6 +95,11 @@ typedef struct AVCodecInternal { * packet into every function. */ AVPacket *pkt; + + /** + * hwaccel-specific private data + */ + void *hwaccel_priv_data; } AVCodecInternal; struct AVCodecDefault { |