diff libmpcodecs/ve.c @ 13166:d198f255bee9

x264 encoder support. Original patch send by Bernhard Rosenkraenzer <bero at arklinux dot org>, modifications by Loren Merritt <lorenm at u.washington dot edu>, Jeff Clagg <snacky at ikaruga.co dot uk> and me
author iive
date Fri, 27 Aug 2004 20:43:05 +0000
parents b58fdd5d8e8d
children d7a2ffc6e694
line wrap: on
line diff
--- a/libmpcodecs/ve.c	Fri Aug 27 15:50:33 2004 +0000
+++ b/libmpcodecs/ve.c	Fri Aug 27 20:43:05 2004 +0000
@@ -17,6 +17,7 @@
 extern vf_info_t ve_info_xvid;
 extern vf_info_t ve_info_qtvideo;
 extern vf_info_t ve_info_nuv;
+extern vf_info_t ve_info_x264;
 
 static vf_info_t* encoder_list[]={
 #ifdef HAVE_DIVX4ENCORE
@@ -37,6 +38,9 @@
     &ve_info_xvid,
 #endif
     &ve_info_nuv,
+#ifdef HAVE_X264
+    &ve_info_x264,
+#endif
     NULL
 };