mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Switched handling 'Transfer Mode' to the new cPlayer/cControl structures
This commit is contained in:
15
transfer.c
15
transfer.c
@@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: transfer.c 1.1 2002/06/22 13:39:23 kls Exp $
|
||||
* $Id: transfer.c 1.2 2002/06/23 12:56:49 kls Exp $
|
||||
*/
|
||||
|
||||
#include "transfer.h"
|
||||
@@ -120,3 +120,16 @@ void cTransfer::SetAudioPid(int APid)
|
||||
remux.SetAudioPid(APid);
|
||||
XXX*/
|
||||
}
|
||||
|
||||
// --- cTransferControl ------------------------------------------------------
|
||||
|
||||
cTransferControl::cTransferControl(cDevice *ReceiverDevice, int VPid, int APid1, int APid2, int DPid1, int DPid2)
|
||||
:cControl(transfer = new cTransfer(VPid, APid1, APid2, DPid1, DPid2), true)
|
||||
{
|
||||
ReceiverDevice->AttachReceiver(transfer);
|
||||
}
|
||||
|
||||
cTransferControl::~cTransferControl()
|
||||
{
|
||||
delete transfer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user