diff options
author | phintuka <phintuka> | 2009-05-27 08:20:58 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-05-27 08:20:58 +0000 |
commit | c0587172823ca8d73411f67d7d627dceb0c269bb (patch) | |
tree | 3662686bda4bd06fce40a66f679c8d18d8738147 | |
parent | bbf0ac379c93dc56e56634989da13ba5a10b1b26 (diff) | |
download | xineliboutput-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.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |