[vlc-devel] commit: Fixed audio visual activation introduced by [ eff24974c62da8740d381ae45694474ac1ee2c05] (Laurent Aimar )
git version control
git at videolan.org
Thu Aug 28 12:45:47 CEST 2008
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Thu Aug 28 11:25:21 2008 +0200| [10c00699b9af7b54eb9e59b9900f6dd24cd223c5] | committer: Laurent Aimar
Fixed audio visual activation introduced by [eff24974c62da8740d381ae45694474ac1ee2c05]
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=10c00699b9af7b54eb9e59b9900f6dd24cd223c5
---
src/audio_output/input.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/audio_output/input.c b/src/audio_output/input.c
index 66bc0b3..d4d7140 100644
--- a/src/audio_output/input.c
+++ b/src/audio_output/input.c
@@ -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;
More information about the vlc-devel
mailing list