diff options
author | Haihao Xiang <haihao.xiang@intel.com> | 2023-06-12 16:14:43 +0800 |
---|---|---|
committer | Haihao Xiang <haihao.xiang@intel.com> | 2023-06-20 09:52:43 +0800 |
commit | 07139b6deb83a760ef7ddec45797f32478118687 (patch) | |
tree | 2a8e58461f9f4bc2f5b10d9bdee1e8abe8a3ecee /libavfilter/qsvvpp.h | |
parent | da4b2549c65dcab733b50ba0a58ae846d705d2c8 (diff) | |
download | ffmpeg-07139b6deb83a760ef7ddec45797f32478118687.tar.gz |
lavfi/qsvvpp: track the runtime version in vpp context
We may check whether a feature is supported via the runtime version in
future.
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
Diffstat (limited to 'libavfilter/qsvvpp.h')
-rw-r--r-- | libavfilter/qsvvpp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/qsvvpp.h b/libavfilter/qsvvpp.h index 3b32193744..8851185ff3 100644 --- a/libavfilter/qsvvpp.h +++ b/libavfilter/qsvvpp.h @@ -83,6 +83,8 @@ typedef struct QSVVPPContext { int eof; /** order with frame_out, sync */ AVFifo *async_fifo; + + mfxVersion ver; } QSVVPPContext; typedef struct QSVVPPCrop { |