]> git.sesse.net Git - vlc/commitdiff
Fixed audio visual activation introduced by [eff24974c62da8740d381ae45694474ac1ee2c05]
authorLaurent Aimar <fenrir@videolan.org>
Thu, 28 Aug 2008 09:25:21 +0000 (11:25 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 28 Aug 2008 10:41:33 +0000 (12:41 +0200)
src/audio_output/input.c

index 66bc0b383b8f08467bd49ae9489afe346d775533..d4d7140425c1e31a31ca12b7fd6c2c2f63a739d1 100644 (file)
@@ -225,7 +225,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
     psz_scaletempo = var_GetBool( p_aout, "audio-time-stretch" ) ? strdup( "scaletempo" ) : NULL;
 
     /* parse user filter lists */
-    for( i_visual = 0; i_visual < 2; i_visual++ )
+    for( i_visual = 0; i_visual < 3; i_visual++ )
     {
         char *ppsz_array[] = { psz_scaletempo, psz_filters, psz_visual };
         char *psz_next = NULL;