[Mplayer-cvslog] CVS: main/libvo vo_dxr3.c,1.98,1.99

David Holm mswitch at mplayerhq.hu
Mon Oct 28 18:08:57 CET 2002


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

Modified Files:
	vo_dxr3.c 
Log Message:
Fixed stupid bug relating to multiple cards on athlons


Index: vo_dxr3.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_dxr3.c,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- vo_dxr3.c	27 Oct 2002 03:30:59 -0000	1.98
+++ vo_dxr3.c	28 Oct 2002 17:08:37 -0000	1.99
@@ -6,6 +6,9 @@
  */
 
 /* ChangeLog added 2002-01-10
+ * 2002-10-28:
+ *  Fixed multicard bug on athlons
+ *
  * 2002-07-18:
  *  Disabled spuenc support, this is still not stable enough =(
  *
@@ -541,7 +544,7 @@
 	}
 
 	/* Open the video interface */
-	if (arg && !noprebuf) {
+	if (arg && arg[0]) {
 		sprintf(devname, "/dev/em8300_mv-%s", arg);
 	} else {
 		/* Try new naming scheme by default */
@@ -565,7 +568,7 @@
 	
 	/* Open the subpicture interface */
 	fdflags |= O_NONBLOCK;
-	if (arg && !noprebuf) {
+	if (arg && arg[0]) {
 		sprintf(devname, "/dev/em8300_sp-%s", arg);
 	} else {
 		/* Try new naming scheme by default */




More information about the MPlayer-cvslog mailing list