blob: 5596df243fe9ccb65782b0cb3b31d1536ec8c34d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- src/xfmedia-xine.c.orig
+++ src/xfmedia-xine.c
@@ -38,15 +38,15 @@
#ifdef HAVE_MATH_H
#include <math.h>
#endif
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
-#ifdef HAVE_SYS_TYPES_H
-#include <sys/types.h>
-#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
@@ -1457,7 +1457,8 @@ xfmedia_xine_trick_mode(XfmediaXine * xf
g_return_val_if_fail(XFMEDIA_IS_XINE(xfx), 0);
g_return_val_if_fail(xfx->priv->stream != NULL, 0);
- return xine_trick_mode(xfx->priv->stream, mode, value);
+ //return xine_trick_mode(xfx->priv->stream, mode, value);
+ return 0;
}
gboolean
|