[vlc-commits] opengl: try generic converter lastly
    Thomas Guillem 
    git at videolan.org
       
    Fri Jun  2 11:34:38 CEST 2017
    
    
  
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Fri Jun  2 11:32:09 2017 +0200| [46a04850f90134b01074205dc8126d0f60292672] | committer: Thomas Guillem
opengl: try generic converter lastly
Since this converter can fallback to CPU chromas.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=46a04850f90134b01074205dc8126d0f60292672
---
 modules/video_output/opengl/vout_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/opengl/vout_helper.c b/modules/video_output/opengl/vout_helper.c
index 69da628812..83f6a714e9 100644
--- a/modules/video_output/opengl/vout_helper.c
+++ b/modules/video_output/opengl/vout_helper.c
@@ -50,13 +50,13 @@
 
 static opengl_tex_converter_init_cb opengl_tex_converter_init_cbs[] =
 {
-    opengl_tex_converter_generic_init,
 #ifdef __ANDROID__
     opengl_tex_converter_anop_init,
 #endif
 #ifdef VLCGL_CONV_CVPX
     opengl_tex_converter_cvpx_init,
 #endif
+    opengl_tex_converter_generic_init,
 };
 
 typedef struct {
    
    
More information about the vlc-commits
mailing list