diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 11:23:34 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 11:23:34 +0200 |
commit | cd030554e53f8161b4944d14da78756f908de6c4 (patch) | |
tree | 206e1649d3d0ff6752dd13c485a004ca1fcb5d47 /device.c | |
parent | 0bb9a1a77b866b79b73fc71e9863e7da5fc57c56 (diff) | |
download | vdr-cd030554e53f8161b4944d14da78756f908de6c4.tar.gz vdr-cd030554e53f8161b4944d14da78756f908de6c4.tar.bz2 |
Switched VDR's own player to the new cPlayer/cControl structures
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 1.3 2002/06/22 13:45:53 kls Exp $ + * $Id: device.c 1.4 2002/06/23 11:16:21 kls Exp $ */ #include "device.h" @@ -460,7 +460,7 @@ bool cDevice::SetPid(int fd, dmxPesType_t PesType, int Pid, dmxOutput_t Output) eSetChannelResult cDevice::SetChannel(int ChannelNumber, int Frequency, char Polarization, int Diseqc, int Srate, int Vpid, int Apid, int Tpid, int Ca, int Pnr) { DELETENULL(transfer); - //XXX+StopReplay(); + StopReplay(); cStatus::MsgChannelSwitch(this, 0); @@ -735,11 +735,6 @@ void cDevice::StillPicture(const uchar *Data, int Length) bool cDevice::Replaying(void) { - /*XXX+ - if (replayBuffer && !replayBuffer->Active()) - StopReplay(); - return replayBuffer != NULL; - XXX*/ return player != NULL; } |