[Mplayer-cvslog] CVS: main/libvo vo_xv.c,1.48,1.49

Nick Kurshev nick at mplayer.dev.hu
Tue Jan 29 11:07:08 CET 2002


Update of /cvsroot/mplayer/main/libvo
In directory mplayer:/var/tmp.root/cvs-serv17038/main/libvo

Modified Files:
	vo_xv.c 
Log Message:
Minor fix - else 0 is unreachable

Index: vo_xv.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_xv.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- vo_xv.c	28 Jan 2002 08:37:58 -0000	1.48
+++ vo_xv.c	29 Jan 2002 10:07:05 -0000	1.49
@@ -180,7 +180,7 @@
 		    else continue;
 		    /* means that user has untouched this parameter since
 		       NVidia driver has default == min for XV_HUE but not mid */
-		    if(!port_value) continue;
+		    if(!port_value && use_reset) continue;
 		    port_min = xv_min;
 		    port_max = xv_max;
 		    port_mid = (port_min + port_max) / 2;




More information about the MPlayer-cvslog mailing list