[Mplayer-cvslog] CVS: main/libvo vosub_vidix.c,1.46,1.47 vo_xvidix.c,1.41,1.42

Alex Beregszaszi alex at mplayerhq.hu
Sun Jun 23 20:00:45 CEST 2002


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

Modified Files:
	vosub_vidix.c vo_xvidix.c 
Log Message:
yvu9,if09,y8,y800 support and multifile fix

Index: vosub_vidix.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vosub_vidix.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- vosub_vidix.c	21 Jun 2002 17:29:05 -0000	1.46
+++ vosub_vidix.c	23 Jun 2002 18:00:42 -0000	1.47
@@ -761,8 +761,9 @@
 	*(uint32_t *)data = vidix_play.num_frames;
 	return VO_TRUE;
   }
+  return VO_NOTIMPL;
   // WARNING: we drop extra parameters (...) here!
-  return server_control(request,data); //VO_NOTIMPL;
+//  return server_control(request,data); //VO_NOTIMPL;
 }
 
 int vidix_preinit(const char *drvname,void *server)

Index: vo_xvidix.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_xvidix.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- vo_xvidix.c	10 Jun 2002 18:40:19 -0000	1.41
+++ vo_xvidix.c	23 Jun 2002 18:00:42 -0000	1.42
@@ -236,6 +236,14 @@
 	case IMGFMT_YUY2:
 	    image_depth = 16;
 	    break;
+	case IMGFMT_YVU9:
+	case IMGFMT_IF09:
+	    image_depth = 9;
+	    break;
+	case IMGFMT_Y800:
+	case IMGFMT_Y8:
+	    image_depth = 8;
+	    break;
 	default:
 	    image_depth = 16;
 	    mp_msg(MSGT_VO, MSGL_FATAL, "Unknown image format: %s\n",
@@ -478,5 +486,6 @@
         }
       return VO_TRUE;
   }
-  return VO_NOTIMPL;
+  vidix_control(request, data);
+//  return VO_NOTIMPL;
 }




More information about the MPlayer-cvslog mailing list