diff libmpcodecs/ve.c @ 7456:dacc262f41ba

Support for XviD encoding
author kmkaplan
date Sat, 21 Sep 2002 12:34:02 +0000
parents 1972c3475d93
children 0b7839c27be9
line wrap: on
line diff
--- a/libmpcodecs/ve.c	Fri Sep 20 20:44:30 2002 +0000
+++ b/libmpcodecs/ve.c	Sat Sep 21 12:34:02 2002 +0000
@@ -14,6 +14,7 @@
 extern vf_info_t ve_info_vfw;
 extern vf_info_t ve_info_rawrgb;
 extern vf_info_t ve_info_libdv;
+extern vf_info_t ve_info_xvid;
 
 static vf_info_t* encoder_list[]={
 #ifdef HAVE_DIVX4ENCORE
@@ -29,6 +30,9 @@
     &ve_info_libdv,
 #endif
     &ve_info_rawrgb,
+#if defined(HAVE_XVID)
+    &ve_info_xvid,
+#endif
     NULL
 };