summaryrefslogtreecommitdiffstats
path: root/libvo/vo_dxr3.c
diff options
context:
space:
mode:
authormswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-15 17:24:27 +0000
committermswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-15 17:24:27 +0000
commitd0c4c00cae082cacf9cd06ac1460f9823eef2010 (patch)
treee6dd560205aa290a01ff237239423de4caed9beb /libvo/vo_dxr3.c
parent6cc953518a6d2dda9965b1a3f11405b98dc0963e (diff)
downloadmpv-d0c4c00cae082cacf9cd06ac1460f9823eef2010.tar.bz2
mpv-d0c4c00cae082cacf9cd06ac1460f9823eef2010.tar.xz
No longer force the device into not using fame
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5098 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_dxr3.c')
-rw-r--r--libvo/vo_dxr3.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c
index 8787c4356d..de12708e29 100644
--- a/libvo/vo_dxr3.c
+++ b/libvo/vo_dxr3.c
@@ -70,7 +70,6 @@
#include "../postproc/rgb2rgb.h"
#include "../postproc/swscale.h"
-#undef USE_LIBFAME
#ifdef USE_LIBFAME
#include "../libfame/fame.h"
static unsigned char *outbuf = NULL;
@@ -471,7 +470,11 @@ static uint32_t preinit(const char *arg)
{
char devname[80];
int fdflags = O_WRONLY;
-
+
+/* With fame we loose sync and seeking =( */
+#ifdef USE_LIBFAME
+ noprebuf = 1;
+#endif
/* Open the control interface */
if (arg && !strcmp("noprebuf", arg)) {
printf("VO: [dxr3] Disabling prebuffering.\n");