diff options
author | John Stebbins <[email protected]> | 2016-05-17 08:12:33 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-05-17 08:12:33 -0700 |
commit | 141579c628e4d74fd6c7d00da0de388bdca7eabd (patch) | |
tree | 5c6d365cb58945bba799c5c891487541d739f3b5 /libhb/scan.c | |
parent | 17433d4f622a561f1cc4fdef71ced517f9b997b5 (diff) |
remove dxva hw decode (#189)
* remove dxva hw decode
It provides practically no speed increase even on a slow CPU and results
in a speed decrease on fast CPUs. And the code is exceptionally fugly.
* cli: remove USE_HWD
Diffstat (limited to 'libhb/scan.c')
-rw-r--r-- | libhb/scan.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index e15e55860..384f5769a 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -1070,10 +1070,9 @@ skip_preview: if (title->video_decode_support != HB_DECODE_SUPPORT_SW) { - hb_log("scan: supported video decoders:%s%s%s", + hb_log("scan: supported video decoders:%s%s", !(title->video_decode_support & HB_DECODE_SUPPORT_SW) ? "" : " avcodec", - !(title->video_decode_support & HB_DECODE_SUPPORT_QSV) ? "" : " qsv", - !(title->video_decode_support & HB_DECODE_SUPPORT_DXVA2) ? "" : " dxva2"); + !(title->video_decode_support & HB_DECODE_SUPPORT_QSV) ? "" : " qsv"); } if( interlaced_preview_count >= ( npreviews / 2 ) ) |