]> git.sesse.net Git - vlc/commitdiff
* Commented out the option 'goom' for the visualizer. It isn't working in
authorDerk-Jan Hartman <hartman@videolan.org>
Wed, 17 Dec 2003 23:21:15 +0000 (23:21 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Wed, 17 Dec 2003 23:21:15 +0000 (23:21 +0000)
  this system yet and will not work before release. The visualizer system
  needs to be cleaned in 0.7.1 with one 'visual' audio filter which loads
  one or more 'visualization' true modules.

src/audio_output/input.c

index d20558db6e453825fb2954c400ee0c8aa90733c0..573cf2398110ac31e6037cc02654804ce33c0178 100644 (file)
@@ -2,7 +2,7 @@
  * input.c : internal management of input streams for the audio output
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: input.c,v 1.40 2003/11/02 12:22:45 gbazin Exp $
+ * $Id: input.c,v 1.41 2003/12/17 23:21:15 hartman Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -88,8 +88,8 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
         val.psz_string = "spectrum"; text.psz_string = _("Spectrum");
         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
-        val.psz_string = "goom"; text.psz_string = _("Goom");
-        var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
+        /* val.psz_string = "goom"; text.psz_string = _("Goom");
+        var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );*/
         if( var_Get( p_aout, "effect-list", &val ) == VLC_SUCCESS )
         {
             var_Set( p_aout, "visual", val );