diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-04-05 11:01:21 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-04-05 11:01:21 +0200 |
commit | 43d25f07de0c9a6feedaa331c82f923beb379fcf (patch) | |
tree | 9318923312cb760c6862b3e4e9343309fda34391 /dvbplayer.c | |
parent | 5ee2a21c8a6c4a10713698f2ad50dc8bc2102aa4 (diff) | |
download | vdr-43d25f07de0c9a6feedaa331c82f923beb379fcf.tar.gz vdr-43d25f07de0c9a6feedaa331c82f923beb379fcf.tar.bz2 |
Fixed the 'VideoOnly' condition in the PlayPes() and PlayTs() calls in cDvbPlayer::Action()
Diffstat (limited to 'dvbplayer.c')
-rw-r--r-- | dvbplayer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dvbplayer.c b/dvbplayer.c index 08483a7c..8ffd406a 100644 --- a/dvbplayer.c +++ b/dvbplayer.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.c 2.8 2009/04/05 10:11:26 kls Exp $ + * $Id: dvbplayer.c 2.9 2009/04/05 10:55:11 kls Exp $ */ #include "dvbplayer.h" @@ -531,9 +531,9 @@ void cDvbPlayer::Action(void) while (pc > 0) { int w; if (isPesRecording) - w = PlayPes(p, pc, playMode != pmPlay && DeviceIsPlayingVideo()); + w = PlayPes(p, pc, playMode != pmPlay && !(playMode == pmSlow && playDir == pdForward) && DeviceIsPlayingVideo()); else - w = PlayTs(p, TS_SIZE, playMode != pmPlay && DeviceIsPlayingVideo()); + w = PlayTs(p, TS_SIZE, playMode != pmPlay && !(playMode == pmSlow && playDir == pdForward) && DeviceIsPlayingVideo()); if (w > 0) { p += w; pc -= w; |