Make fame the default encoder until lavc's mpeg1 encoder is repaired.

Disable spu writes until lockup bug has been found.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5498 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
mswitch 2002-04-05 18:05:57 +00:00
parent ef3cdbb6de
commit 632be7465a
1 changed files with 4 additions and 4 deletions

View File

@ -136,10 +136,10 @@ enum MpegCodec {
MPG_CODEC_FAME
};
#if defined(USE_LIBAVCODEC)
static int mpeg_codec = MPG_CODEC_AVCODEC;
#elif defined(USE_LIBFAME)
#if defined(USE_LIBFAME)
static int mpeg_codec = MPG_CODEC_FAME;
#elif defined(USE_LIBAVCODEC)
static int mpeg_codec = MPG_CODEC_AVCODEC;
#else
static int mpeg_codec = MPG_CODEC_NONE;
#endif
@ -510,7 +510,7 @@ static void draw_osd(void)
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++;
}