[Mplayer-cvslog] CVS: main/Gui interface.c,1.53,1.54

Arpi of Ize arpi at mplayerhq.hu
Thu Oct 24 01:13:29 CEST 2002


Update of /cvsroot/mplayer/main/Gui
In directory mail:/var/tmp.root/cvs-serv15096

Modified Files:
	interface.c 
Log Message:
A small patch to Gui/interface.c; the first fix is a plain bug, the second is
there as i think it's a pity that "-aop list=resample" doesn't work in gui mode.
patch by Björn Sandell <biorn at dce.chalmers.se>
(checked & accepted by Pontscho)


Index: interface.c
===================================================================
RCS file: /cvsroot/mplayer/main/Gui/interface.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- interface.c	10 Oct 2002 14:11:06 -0000	1.53
+++ interface.c	23 Oct 2002 23:13:26 -0000	1.54
@@ -86,7 +86,7 @@
 
 void gset( char ** str,char * what )
 {
- if ( *str ) { if ( !strstr( *str,what ) )  gstrcat( str,"," ); gstrcat( str,what ); }
+ if ( *str ) { if ( !strstr( *str,what ) ) { gstrcat( str,"," ); gstrcat( str,what ); }}
    else gstrcat( str,what );
 }
 
@@ -541,7 +541,7 @@
 		 
 // --- audio opts
 	audio_delay=gtkAODelay;
-	if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; }
+//	if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; }
 	if ( gtkAONorm ) 	       gset( &ao_plugin_cfg.plugin_list,"volnorm" );
 	if ( gtkEnableAudioEqualizer ) gset( &ao_plugin_cfg.plugin_list,"eq" );
 	if ( gtkAOExtraStereo )




More information about the MPlayer-cvslog mailing list