]> git.sesse.net Git - ffmpeg/commit
hwcontext: add av_hwdevice_ctx_create_derived_opts
authorLynne <dev@lynne.ee>
Wed, 20 May 2020 19:58:03 +0000 (20:58 +0100)
committerLynne <dev@lynne.ee>
Sat, 23 May 2020 18:07:26 +0000 (19:07 +0100)
commit2e08b39444ab27477e6ea2a184ae7fe1b9786594
tree085ed11f850d45108a492b80e5b5cb5c5b5708d3
parent9576e49b40f335de091e9f77c71e4bc2f638d224
hwcontext: add av_hwdevice_ctx_create_derived_opts

This allows for users who derive devices to set options for the
new device context they derive.
The main use case of this is to allow users to enable extensions
(such as surface drawing extensions) in Vulkan while deriving from
the device their frames are on. That way, users don't need to write
any initialization code themselves, since the Vulkan spec invalidates
mixing instances, physical devices and active devices.
Apart from Vulkan, other hwcontexts ignore the opts argument since they
don't support options at all (or in VAAPI and OpenCL's case, options are
currently only used for device selection, which device_derive overrides).
doc/APIchanges
libavutil/hwcontext.c
libavutil/hwcontext.h
libavutil/hwcontext_cuda.c
libavutil/hwcontext_internal.h
libavutil/hwcontext_opencl.c
libavutil/hwcontext_qsv.c
libavutil/hwcontext_vaapi.c
libavutil/hwcontext_vulkan.c
libavutil/version.h