vdr/transfer.c

125 lines
3.4 KiB
C
Raw Normal View History

2002-06-22 13:45:53 +02:00
/*
* transfer.c: Transfer mode
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: transfer.c 1.33 2006/01/29 17:24:39 kls Exp $
2002-06-22 13:45:53 +02:00
*/
#include "transfer.h"
2004-10-16 09:36:28 +02:00
#define TRANSFERBUFSIZE MEGABYTE(2)
#define POLLTIMEOUTS_BEFORE_DEVICECLEAR 6
2002-06-22 13:45:53 +02:00
// --- cTransfer -------------------------------------------------------------
cTransfer::cTransfer(int VPid, const int *APids, const int *DPids, const int *SPids)
:cReceiver(0, -1, VPid, APids, Setup.UseDolbyDigital ? DPids : NULL, SPids)
,cThread("transfer")
2002-06-22 13:45:53 +02:00
{
2004-10-16 09:36:28 +02:00
ringBuffer = new cRingBufferLinear(TRANSFERBUFSIZE, TS_SIZE * 2, true, "Transfer");
remux = new cRemux(VPid, APids, Setup.UseDolbyDigital ? DPids : NULL, SPids);
2002-06-22 13:45:53 +02:00
}
cTransfer::~cTransfer()
{
cReceiver::Detach();
cPlayer::Detach();
delete remux;
delete ringBuffer;
}
void cTransfer::Activate(bool On)
{
2005-08-13 13:17:24 +02:00
if (On)
Start();
else
2002-06-22 13:45:53 +02:00
Cancel(3);
}
void cTransfer::Receive(uchar *Data, int Length)
{
2005-08-14 11:24:57 +02:00
if (IsAttached() && Running()) {
2004-10-16 09:36:28 +02:00
int p = ringBuffer->Put(Data, Length);
2005-08-14 11:24:57 +02:00
if (p != Length && Running())
2004-10-16 09:36:28 +02:00
ringBuffer->ReportOverflow(Length - p);
return;
}
2002-06-22 13:45:53 +02:00
}
void cTransfer::Action(void)
{
int PollTimeouts = 0;
2004-10-16 09:36:28 +02:00
uchar *p = NULL;
int Result = 0;
2005-08-14 11:24:57 +02:00
while (Running()) {
2004-10-16 09:36:28 +02:00
int Count;
uchar *b = ringBuffer->Get(Count);
if (b) {
if (ringBuffer->Available() > TRANSFERBUFSIZE * 9 / 10) {
2004-10-16 09:36:28 +02:00
// If the buffer runs full, we have no chance of ever catching up
// since the data comes in at the same rate as it goes out (it's "live").
// So let's clear the buffer instead of suffering from permanent
// overflows.
dsyslog("clearing transfer buffer to avoid overflows");
DeviceClear();
2004-10-16 09:36:28 +02:00
ringBuffer->Clear();
remux->Clear();
PlayPes(NULL, 0);
2004-10-16 09:36:28 +02:00
p = NULL;
2002-06-22 13:45:53 +02:00
continue;
}
2004-10-16 09:36:28 +02:00
Count = remux->Put(b, Count);
if (Count)
ringBuffer->Del(Count);
2002-06-22 13:45:53 +02:00
}
if (!p)
p = remux->Get(Result);
2004-10-16 09:36:28 +02:00
if (p) {
cPoller Poller;
if (DevicePoll(Poller, 100)) {
PollTimeouts = 0;
int w = PlayPes(p, Result);
2004-10-16 09:36:28 +02:00
if (w > 0) {
p += w;
Result -= w;
remux->Del(w);
if (Result <= 0)
p = NULL;
}
else if (w < 0 && FATALERRNO)
LOG_ERROR;
}
else {
PollTimeouts++;
if (PollTimeouts == POLLTIMEOUTS_BEFORE_DEVICECLEAR) {
dsyslog("clearing device because of consecutive poll timeouts");
DeviceClear();
ringBuffer->Clear();
remux->Clear();
PlayPes(NULL, 0);
2004-10-16 09:36:28 +02:00
p = NULL;
}
2002-06-22 13:45:53 +02:00
}
}
}
}
// --- cTransferControl ------------------------------------------------------
2003-05-11 09:01:51 +02:00
cDevice *cTransferControl::receiverDevice = NULL;
cTransferControl::cTransferControl(cDevice *ReceiverDevice, int VPid, const int *APids, const int *DPids, const int *SPids)
:cControl(transfer = new cTransfer(VPid, APids, DPids, SPids), true)
{
ReceiverDevice->AttachReceiver(transfer);
2003-05-11 09:01:51 +02:00
receiverDevice = ReceiverDevice;
}
cTransferControl::~cTransferControl()
{
2003-05-11 09:01:51 +02:00
receiverDevice = NULL;
delete transfer;
}