summaryrefslogtreecommitdiffstats
path: root/libvo/vo_dxr3.c
diff options
context:
space:
mode:
authormswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-05 18:05:57 +0000
committermswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-05 18:05:57 +0000
commit632be7465a23fb2bdd05b9d6fa6a7bd7afaf1ec4 (patch)
tree3f6d1eede4657264f479c75d53b96e49b37fabd1 /libvo/vo_dxr3.c
parentef3cdbb6de2e763abbcf241f6b2a551ec13224d4 (diff)
downloadmpv-632be7465a23fb2bdd05b9d6fa6a7bd7afaf1ec4.tar.bz2
mpv-632be7465a23fb2bdd05b9d6fa6a7bd7afaf1ec4.tar.xz
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
Diffstat (limited to 'libvo/vo_dxr3.c')
-rw-r--r--libvo/vo_dxr3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c
index 66ed64e67c..c383fcc811 100644
--- a/libvo/vo_dxr3.c
+++ b/libvo/vo_dxr3.c
@@ -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++;
}