From ff1ffe28bfadb30d0da271e5a002d3584e4586e2 Mon Sep 17 00:00:00 2001 From: mswitch Date: Sun, 24 Mar 2002 15:18:38 +0000 Subject: [PATCH] Default to avcodec if installed, otherwise use fame. Apparently fame output is very very blocky git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5309 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_dxr3.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c index 2073ea6702..517b88c64d 100644 --- a/libvo/vo_dxr3.c +++ b/libvo/vo_dxr3.c @@ -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 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32 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;