From 920512d358221effa851da8a64fd26a54d154605 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 3 Dec 2014 21:54:04 +0100 Subject: vo_opengl: move hwdec parts into their own files This wasn't done before because there was no advantage in "abstracting" it. This changed, and putting this into its own files is better than messing it into gl_common.c/h. --- video/out/gl_common.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'video/out/gl_common.c') diff --git a/video/out/gl_common.c b/video/out/gl_common.c index 4d0a3c8dd4..1f005934d4 100644 --- a/video/out/gl_common.c +++ b/video/out/gl_common.c @@ -1035,20 +1035,3 @@ void mp_log_source(struct mp_log *log, int lev, const char *src) src = next; } } - -extern const struct gl_hwdec_driver gl_hwdec_vaglx; -extern const struct gl_hwdec_driver gl_hwdec_vda; -extern const struct gl_hwdec_driver gl_hwdec_vdpau; - -const struct gl_hwdec_driver *const mpgl_hwdec_drivers[] = { -#if HAVE_VAAPI_GLX - &gl_hwdec_vaglx, -#endif -#if HAVE_VDA_GL - &gl_hwdec_vda, -#endif -#if HAVE_VDPAU_GL_X11 - &gl_hwdec_vdpau, -#endif - NULL -}; -- cgit v1.2.3