From a1d3afb395a8cea5327e3155f32c3d808bd52c49 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 6 Sep 2014 14:01:37 +0200 Subject: vo_corevideo: remove this VO This was kept in the codebase because it is slightly faster than --vo=opengl on really old Intel cards (from the GMA era). Time to kill it, and let it rest. Fixes #1061 --- wscript | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index c00d08d2a2..7d52cdc043 100644 --- a/wscript +++ b/wscript @@ -611,13 +611,6 @@ video_output_features = [ 'desc': 'OpenGL video outputs', 'deps_any': [ 'gl-cocoa', 'gl-x11', 'gl-win32', 'gl-wayland' ], 'func': check_true - } , { - 'name': '--corevideo', - 'desc': 'CoreVideo', - 'deps': [ 'gl', 'gl-cocoa' ], - 'func': check_statement('QuartzCore/CoreVideo.h', - 'CVOpenGLTextureCacheCreate(0, 0, 0, 0, 0, 0)', - framework_name=['QuartzCore']) } , { 'name': '--vdpau', 'desc': 'VDPAU acceleration', @@ -679,7 +672,6 @@ hwaccel_features = [ } , { 'name': '--vda-hwaccel', 'desc': 'libavcodec VDA hwaccel', - 'deps': [ 'corevideo' ], 'func': compose_checks( check_headers('VideoDecodeAcceleration/VDADecoder.h'), check_statement('libavcodec/vda.h', @@ -690,7 +682,9 @@ hwaccel_features = [ 'name': '--vda-gl', 'desc': 'VDA with OpenGL', 'deps': [ 'gl-cocoa', 'vda-hwaccel' ], - 'func': check_true + # apparently a bug in waf causes msg= to be needed when passing only + # framework= (it probably fails to infer it) + 'func': check_cc(msg='QuartzCore', framework='QuartzCore') }, { 'name': '--vdpau-hwaccel', 'desc': 'libavcodec VDPAU hwaccel', -- cgit v1.2.3