changeset 5308:69e55c9c1a1a

Default to avcodec if installed, otherwise use fame. Apparently fame output is very very blocky
author mswitch
date Sun, 24 Mar 2002 15:18:38 +0000
parents fb58b4a8fb18
children 2ce4e031f47a
files libvo/vo_dxr3.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_dxr3.c	Sun Mar 24 14:47:28 2002 +0000
+++ b/libvo/vo_dxr3.c	Sun Mar 24 15:18:38 2002 +0000
@@ -80,11 +80,11 @@
 #include "../postproc/swscale.h"
 #include "../cpudetect.h"
 
-/*#ifndef USE_LIBAVCODEC*/
+#ifndef USE_LIBAVCODEC
 #  define USE_LIBFAME
-/*#else
+#else
 #  undef USE_LIBFAME
-#endif*/
+#endif
 #ifdef USE_LIBFAME
 #include "../libfame/fame.h"
 static unsigned char *outbuf = NULL;
@@ -288,7 +288,7 @@
 			return -1;
 		}
 
-		fame_obj = fame_get_object(fame_ctx, "motion/none");
+		fame_obj = fame_get_object(fame_ctx, "motion/pmvfast");
 		fame_register(fame_ctx, "motion", fame_obj);
 		
 		fame_params.width = s_width;