summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-05-27 08:20:58 +0000
committerphintuka <phintuka>2009-05-27 08:20:58 +0000
commitc0587172823ca8d73411f67d7d627dceb0c269bb (patch)
tree3662686bda4bd06fce40a66f679c8d18d8738147
parentbbf0ac379c93dc56e56634989da13ba5a10b1b26 (diff)
downloadxineliboutput-c0587172823ca8d73411f67d7d627dceb0c269bb.tar.gz
xineliboutput-c0587172823ca8d73411f67d7d627dceb0c269bb.tar.bz2
Removed trick speed delay for vdr-1.7.5+
(forward trick speeds should now work. Backward trickspeeds won't work yet)
-rw-r--r--device.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/device.c b/device.c
index 62832723..889cf2fb 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c,v 1.80 2009-05-06 15:16:31 phintuka Exp $
+ * $Id: device.c,v 1.81 2009-05-27 08:20:58 phintuka Exp $
*
*/
@@ -910,6 +910,9 @@ bool cXinelibDevice::PlayFile(const char *FileName, int Position,
int cXinelibDevice::PlayTrickSpeed(const uchar *buf, int length)
{
+#if VDRVERSNUM >= 10705
+ return 0;
+#endif
if(abs(m_TrickSpeed) > 1 && (m_TrickSpeedMode & trs_I_frames)) {
uint8_t PictureType = pes_get_picture_type(buf, length);
#ifdef LOG_TRICKSPEED