From 6f1cb5a8f8c84e0746081d42cad11336dfef9bc2 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Wed, 18 Sep 2019 18:13:14 -0700 Subject: [PATCH] win-dshow: Disable HW decode in DirectShow for now This did not get enough testing, so disable it for now until more devices can be tested (especially the live gamer portable). --- plugins/win-dshow/ffmpeg-decode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/win-dshow/ffmpeg-decode.c b/plugins/win-dshow/ffmpeg-decode.c index 4960a6c4b..0d7c7029b 100644 --- a/plugins/win-dshow/ffmpeg-decode.c +++ b/plugins/win-dshow/ffmpeg-decode.c @@ -25,8 +25,7 @@ #ifdef USE_NEW_HARDWARE_CODEC_METHOD enum AVHWDeviceType hw_priority[] = { - AV_HWDEVICE_TYPE_D3D11VA, AV_HWDEVICE_TYPE_DXVA2, AV_HWDEVICE_TYPE_QSV, - AV_HWDEVICE_TYPE_CUDA, AV_HWDEVICE_TYPE_NONE, + AV_HWDEVICE_TYPE_NONE, }; static bool has_hw_type(AVCodec *c, enum AVHWDeviceType type)