[vlc-commits] Disable OpenGL visualisation for Win32 temporarily

Jean-Baptiste Kempf git at videolan.org
Fri Jan 23 14:00:05 CET 2015


vlc/vlc-2.2 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jan 23 13:59:16 2015 +0100| [59409d5d43fd85e55728f9addcf5cd70770392f2] | committer: Jean-Baptiste Kempf

Disable OpenGL visualisation for Win32 temporarily

Works-around #13650 crash on 2.2.0

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

 src/audio_output/output.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/audio_output/output.c b/src/audio_output/output.c
index 3b6999c..80c4973 100644
--- a/src/audio_output/output.c
+++ b/src/audio_output/output.c
@@ -247,6 +247,7 @@ audio_output_t *aout_New (vlc_object_t *parent)
         text.psz_string = (char *)"Goom";
         var_Change (aout, "visual", VLC_VAR_ADDCHOICE, &val, &text);
     }
+#ifndef _WIN32
     /* Look for libprojectM plugin */
     if (module_exists ("projectm"))
     {
@@ -268,6 +269,7 @@ audio_output_t *aout_New (vlc_object_t *parent)
         text.psz_string = (char*)"3D spectrum";
         var_Change (aout, "visual", VLC_VAR_ADDCHOICE, &val, &text);
     }
+#endif
     str = var_GetNonEmptyString (aout, "effect-list");
     if (str != NULL)
     {



More information about the vlc-commits mailing list