diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-08-05 15:22:34 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-10-16 20:00:02 +0200 |
commit | 772c87c5a658f36d7c0612f5da583fc2bfa54f79 (patch) | |
tree | 4a7e02420a44101d79d8029c5a60d644daa83eeb /libavcodec/qsvenc.h | |
parent | 68e00ad66d13c57d9eb3a3862b44ab3fb030e19f (diff) | |
download | ffmpeg-772c87c5a658f36d7c0612f5da583fc2bfa54f79.tar.gz |
qsvenc: support passing arbitrary external buffers to the encoder
Diffstat (limited to 'libavcodec/qsvenc.h')
-rw-r--r-- | libavcodec/qsvenc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h index 7bbeec33aa..d240c7c7cb 100644 --- a/libavcodec/qsvenc.h +++ b/libavcodec/qsvenc.h @@ -49,7 +49,8 @@ typedef struct QSVEncContext { mfxFrameAllocRequest req; mfxExtCodingOption extco; - mfxExtBuffer *extparam[1]; + mfxExtBuffer *extparam_internal[1]; + mfxExtBuffer **extparam; AVFifoBuffer *async_fifo; |