[vlc-commits] VT: only use hw decoding unless explicitely requested

Jean-Baptiste Kempf git at videolan.org
Thu Oct 12 17:17:21 CEST 2017


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Oct 12 17:16:16 2017 +0200| [eaf8fd5e3910ca2fc3ec7176f3e6619fff2d3f96] | committer: Jean-Baptiste Kempf

VT: only use hw decoding unless explicitely requested

Close #18911

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eaf8fd5e3910ca2fc3ec7176f3e6619fff2d3f96
---

 modules/codec/videotoolbox.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/videotoolbox.m b/modules/codec/videotoolbox.m
index f460f56133..7b4524566c 100644
--- a/modules/codec/videotoolbox.m
+++ b/modules/codec/videotoolbox.m
@@ -85,7 +85,7 @@ set_capability("video decoder",800)
 set_callbacks(OpenDecoder, CloseDecoder)
 
 add_bool("videotoolbox-temporal-deinterlacing", true, VT_TEMPO_DEINTERLACE, VT_TEMPO_DEINTERLACE_LONG, false)
-add_bool("videotoolbox-hw-decoder-only", false, VT_REQUIRE_HW_DEC, VT_REQUIRE_HW_DEC, false)
+add_bool("videotoolbox-hw-decoder-only", true, VT_REQUIRE_HW_DEC, VT_REQUIRE_HW_DEC, false)
 add_string("videotoolbox-cvpx-chroma", "", VT_FORCE_CVPX_CHROMA, VT_FORCE_CVPX_CHROMA_LONG, true);
 vlc_module_end()
 



More information about the vlc-commits mailing list