diff mbox series

[FFmpeg-devel,v6,6/9] libavutil/hwcontext_qsv: pass vendor option to child device

Message ID 20200518202934.49601-6-artem.galin@gmail.com
State New
Headers show
Series [FFmpeg-devel,v6,1/9] fftools/qsv: add device initialization from string | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

galinart May 18, 2020, 8:29 p.m. UTC
From: Artem Galin <artem.galin@intel.com>

Signed-off-by: Artem Galin <artem.galin@intel.com>
---
 libavutil/hwcontext_qsv.c | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

diff --git a/libavutil/hwcontext_qsv.c b/libavutil/hwcontext_qsv.c
index 488655b686..e75d4b7c24 100644
--- a/libavutil/hwcontext_qsv.c
+++ b/libavutil/hwcontext_qsv.c
@@ -1475,6 +1475,11 @@  static int qsv_device_create(AVHWDeviceContext *ctx, const char *device,
 #endif
 #if CONFIG_D3D11VA
     case AV_HWDEVICE_TYPE_D3D11VA:
+        {
+            e = av_dict_get(opts, "vendor", NULL, 0);
+            if(e)
+                av_dict_set(&child_device_opts, "vendor", e->value, 0);
+        }
         break;
 #endif
 #if CONFIG_DXVA2