mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Introduced the new function cPlugin::Initialize(), in order to be able to separate the startup of a plugin into an "early" (Initialize()) and "late" (Start()) phase (suggested by Andreas Schultz). Plugin authors should please read the section about "Getting started" in PLUGINS.html and adapt their code if applicable. - Implemented the CableDeliverySystemDescriptor and TerrestrialDeliverySystemDescriptor in libdtv (thanks to Sven Grothklags and Andreas Schultz). - Fixed keeping live video active in case the primary device doesn't have an MPEG decoder (thanks to Wolfgang Goeller for reporting this one). - Implemented cDevice::ActualDevice(), which returns the actual receiving device in case of 'Transfer Mode', or the primary device otherwise. This may be useful for plugins that want to attach a cReceiver to the device where the current live video is actually coming from. - Added VDRVERSNUM to config.h, which can be used by the preprocessor to check the actual VDR version (suggested by Stefan Huelswitt). - Removed the WaitForPut/WaitForGet stuff from cRingBuffer, since it appears to no longer be necessary due to the implementation of cNonBlockingFileReader in dvbplayer.c. Also, the long timeout in WaitForPut caused problems with cReceivers that use a ring buffer and didn't immediately return from their Receive() function if the buffer runs full (thanks to Sascha Volkenandt for reporting this one). - Fixed handling EPG data where the "extended event descriptor" comes before the "short event" or a "time shifted event" (thanks to Jonan Santiago). - Disabled the "Received stuffing section in EIT" log message. - Updated 'channels.conf.terr' for Berlin (thanks to Juri Haberland). - Avoiding short display of the "Main" menu when pressing the "Recordings" button or the "Back" button during replay. - Further increased the timeout until an index file is considerd no longer to be written. - Implemented separate PausePriority and PauseLifetime parameters for the recordings created when pausing live video (suggested by Alfred Zastrow). - Changed C++ style comments in libdtv into C style to avoid warnings in gcc 3.x (thanks to Andreas Schultz).
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/*
|
|
* transfer.h: Transfer mode
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: transfer.h 1.4 2003/05/11 08:48:36 kls Exp $
|
|
*/
|
|
|
|
#ifndef __TRANSFER_H
|
|
#define __TRANSFER_H
|
|
|
|
#include "player.h"
|
|
#include "receiver.h"
|
|
#include "remux.h"
|
|
#include "ringbuffer.h"
|
|
#include "thread.h"
|
|
|
|
class cTransfer : public cReceiver, public cPlayer, public cThread {
|
|
private:
|
|
cRingBufferLinear *ringBuffer;
|
|
cRemux *remux;
|
|
bool canToggleAudioTrack;
|
|
uchar audioTrack;
|
|
bool gotBufferReserve;
|
|
bool active;
|
|
void StripAudioPackets(uchar *b, int Length, uchar Except = 0x00);
|
|
protected:
|
|
virtual void Activate(bool On);
|
|
virtual void Receive(uchar *Data, int Length);
|
|
virtual void Action(void);
|
|
public:
|
|
cTransfer(int VPid, int APid1, int APid2, int DPid1, int DPid2);
|
|
virtual ~cTransfer();
|
|
virtual int NumAudioTracks(void) const;
|
|
virtual const char **GetAudioTracks(int *CurrentTrack = NULL) const;
|
|
virtual void SetAudioTrack(int Index);
|
|
};
|
|
|
|
class cTransferControl : public cControl {
|
|
private:
|
|
cTransfer *transfer;
|
|
static cDevice *receiverDevice;
|
|
public:
|
|
cTransferControl(cDevice *ReceiverDevice, int VPid, int APid1, int APid2, int DPid1, int DPid2);
|
|
~cTransferControl();
|
|
virtual void Hide(void) {}
|
|
static cDevice *ReceiverDevice(void) { return receiverDevice; }
|
|
};
|
|
|
|
#endif //__TRANSFER_H
|