[MPlayer-cvslog] r38210 - trunk/libvo/video_out.c

reimar subversion at mplayerhq.hu
Tue Dec 29 13:01:22 EET 2020


Author: reimar
Date: Tue Dec 29 13:01:21 2020
New Revision: 38210

Log:
libvo: quick hack to prefer vo_gl over corevideo.

Modified:
   trunk/libvo/video_out.c

Modified: trunk/libvo/video_out.c
==============================================================================
--- trunk/libvo/video_out.c	Tue Dec 29 12:58:51 2020	(r38209)
+++ trunk/libvo/video_out.c	Tue Dec 29 13:01:21 2020	(r38210)
@@ -171,6 +171,7 @@ const vo_functions_t* const video_out_dr
         &video_out_kva,
 #endif
 #ifdef CONFIG_COREVIDEO
+        &video_out_gl_nosw,
         &video_out_corevideo,
 #endif
 #ifdef CONFIG_QUARTZ
@@ -200,9 +201,11 @@ const vo_functions_t* const video_out_dr
 #ifdef CONFIG_XV
         &video_out_xv,
 #endif
+#ifndef CONFIG_COREVIDEO
 #ifdef CONFIG_GL
         &video_out_gl_nosw,
 #endif
+#endif
 #ifdef CONFIG_X11
         &video_out_x11,
         &video_out_xover,


More information about the MPlayer-cvslog mailing list