# HG changeset patch # User mswitch # Date 1018029957 0 # Node ID 14323f846fc85e13634bd0a0c0455b8cbc233618 # Parent e47c6eeb1fa22859d87722d761af10aa56779f6b Make fame the default encoder until lavc's mpeg1 encoder is repaired. Disable spu writes until lockup bug has been found. diff -r e47c6eeb1fa2 -r 14323f846fc8 libvo/vo_dxr3.c --- a/libvo/vo_dxr3.c Fri Apr 05 17:16:18 2002 +0000 +++ b/libvo/vo_dxr3.c Fri Apr 05 18:05:57 2002 +0000 @@ -136,10 +136,10 @@ MPG_CODEC_FAME }; -#if defined(USE_LIBAVCODEC) +#if defined(USE_LIBFAME) +static int mpeg_codec = MPG_CODEC_FAME; +#elif defined(USE_LIBAVCODEC) static int mpeg_codec = MPG_CODEC_AVCODEC; -#elif defined(USE_LIBFAME) -static int mpeg_codec = MPG_CODEC_FAME; #else static int mpeg_codec = MPG_CODEC_NONE; #endif @@ -510,7 +510,7 @@ if (!noprebuf) { ioctl(fd_spu, EM8300_IOCTL_SPU_SETPTS, &vo_pts); } - write(fd_spu, spued->data, spued->count); + /*write(fd_spu, spued->data, spued->count);*/ } disposd++; }