Commit 59409d5d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Disable OpenGL visualisation for Win32 temporarily

Works-around #13650 crash on 2.2.0
parent c6131be8
...@@ -247,6 +247,7 @@ audio_output_t *aout_New (vlc_object_t *parent) ...@@ -247,6 +247,7 @@ audio_output_t *aout_New (vlc_object_t *parent)
text.psz_string = (char *)"Goom"; text.psz_string = (char *)"Goom";
var_Change (aout, "visual", VLC_VAR_ADDCHOICE, &val, &text); var_Change (aout, "visual", VLC_VAR_ADDCHOICE, &val, &text);
} }
#ifndef _WIN32
/* Look for libprojectM plugin */ /* Look for libprojectM plugin */
if (module_exists ("projectm")) if (module_exists ("projectm"))
{ {
...@@ -268,6 +269,7 @@ audio_output_t *aout_New (vlc_object_t *parent) ...@@ -268,6 +269,7 @@ audio_output_t *aout_New (vlc_object_t *parent)
text.psz_string = (char*)"3D spectrum"; text.psz_string = (char*)"3D spectrum";
var_Change (aout, "visual", VLC_VAR_ADDCHOICE, &val, &text); var_Change (aout, "visual", VLC_VAR_ADDCHOICE, &val, &text);
} }
#endif
str = var_GetNonEmptyString (aout, "effect-list"); str = var_GetNonEmptyString (aout, "effect-list");
if (str != NULL) if (str != NULL)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment