diff libvo/video_out.c @ 1871:cb5dde69354b

Mpeg PES added
author arpi
date Sat, 08 Sep 2001 20:48:02 +0000
parents f29e0c2bb675
children 6278f566cd91
line wrap: on
line diff
--- a/libvo/video_out.c	Sat Sep 08 06:52:59 2001 +0000
+++ b/libvo/video_out.c	Sat Sep 08 20:48:02 2001 +0000
@@ -67,6 +67,7 @@
 extern vo_functions_t video_out_png;
 extern vo_functions_t video_out_ggi;
 extern vo_functions_t video_out_aa;
+extern vo_functions_t video_out_mpegpes;
 
 vo_functions_t* video_out_drivers[] =
 {
@@ -118,6 +119,7 @@
         &video_out_odivx,
         &video_out_pgm,
         &video_out_md5,
+	&video_out_mpegpes,
         NULL
 };
 
@@ -160,6 +162,7 @@
 	case IMGFMT_CLJR: return("Packed CLJR");
 	case IMGFMT_YUVP: return("Packed YUVP");
 	case IMGFMT_UYVP: return("Packed UYVP");
+	case IMGFMT_MPEGPES: return("Mpeg PES");
     }
     return("Unknown");
 }