[Mplayer-cvslog] CVS: main/libvo video_out.c,1.91,1.92

Alex Beregszaszi syncmail at mplayerhq.hu
Mon Oct 4 21:36:16 CEST 2004


CVS change done by Alex Beregszaszi

Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv3227

Modified Files:
	video_out.c 
Log Message:
move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2

Index: video_out.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/video_out.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- video_out.c	29 Sep 2004 01:46:30 -0000	1.91
+++ video_out.c	4 Oct 2004 19:36:12 -0000	1.92
@@ -203,20 +203,6 @@
 #ifdef HAVE_BL
 	&video_out_bl,
 #endif
-
-#ifdef HAVE_PNG
-	&video_out_png,
-#endif	
-#ifdef HAVE_JPEG
-	&video_out_jpeg,
-#endif
-#ifdef HAVE_GIF
-	&video_out_gif89a,
-#endif
-        &video_out_null,
-//        &video_out_odivx,
-	&video_out_mpegpes,
-	&video_out_yuv4mpeg,
 #ifdef HAVE_VESA
 	&video_out_vesa,
 #endif
@@ -235,6 +221,19 @@
 #endif
     &video_out_cvidix,
 #endif
+        &video_out_null,
+	// should not be auto-selected
+	&video_out_mpegpes,
+	&video_out_yuv4mpeg,
+#ifdef HAVE_PNG
+	&video_out_png,
+#endif	
+#ifdef HAVE_JPEG
+	&video_out_jpeg,
+#endif
+#ifdef HAVE_GIF
+	&video_out_gif89a,
+#endif
 #ifdef HAVE_TGA
         &video_out_tga,
 #endif




More information about the MPlayer-cvslog mailing list