summaryrefslogtreecommitdiff
path: root/dvbapi.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-03-03 11:36:36 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2001-03-03 11:36:36 +0100
commitf2c4f2ba92d309d1d0c7a8427000c4cda420e0ff (patch)
treea46565ff753bfd377979a24bb9ab0a3cb925575d /dvbapi.c
parentfc3e4acbe4e8cd058d77de3298b5c394f3fd5e9b (diff)
downloadvdr-f2c4f2ba92d309d1d0c7a8427000c4cda420e0ff.tar.gz
vdr-f2c4f2ba92d309d1d0c7a8427000c4cda420e0ff.tar.bz2
Fixed switching to another channel via the EPG while a recording is being replayed
Diffstat (limited to 'dvbapi.c')
-rw-r--r--dvbapi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dvbapi.c b/dvbapi.c
index 8518d7f9..166b0e06 100644
--- a/dvbapi.c
+++ b/dvbapi.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbapi.c 1.61 2001/02/24 13:13:19 kls Exp $
+ * $Id: dvbapi.c 1.62 2001/03/03 11:36:36 kls Exp $
*/
#include "dvbapi.h"
@@ -2136,6 +2136,7 @@ bool cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization,
if (videoDev >= 0) {
cThreadLock ThreadLock(siProcessor); // makes sure the siProcessor won't access the vbi-device while switching
StopTransfer();
+ StopReplay();
SetPlayMode(videoDev, VID_PLAY_RESET);
struct frontend front;
ioctl(videoDev, VIDIOCGFRONTEND, &front);