mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 10:55:43 +00:00
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:
parent
ef3cdbb6de
commit
632be7465a
@ -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++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user