diff options
Diffstat (limited to 'dvbapi.c')
-rw-r--r-- | dvbapi.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.45 2001/01/07 17:00:50 kls Exp $ + * $Id: dvbapi.c 1.46 2001/01/07 17:02:38 kls Exp $ */ #include "dvbapi.h" @@ -2164,10 +2164,6 @@ bool cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization, { if (videoDev >= 0) { StopTransfer(); - if (transferringFromDvbApi) { - transferringFromDvbApi->StopTransfer(); - transferringFromDvbApi = NULL; - } SetPlayMode(videoDev, VID_PLAY_RESET); struct frontend front; ioctl(videoDev, VIDIOCGFRONTEND, &front); @@ -2229,6 +2225,10 @@ void cDvbApi::StopTransfer(void) transferBuffer = NULL; SetPlayMode(videoDev, VID_PLAY_RESET); } + if (transferringFromDvbApi) { + transferringFromDvbApi->StopTransfer(); + transferringFromDvbApi = NULL; + } } int cDvbApi::SecondsToFrames(int Seconds) |