mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
VDR developer version 2.1.7 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.7.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.6-2.1.7.diff MD5 checksums: 1c954bad31ce74cd1cbd7987e62d2a98 vdr-2.1.7.tar.bz2 88a90327a75833b7723942d3bd25f954 vdr-2.1.6-2.1.7.diff WARNING: ======== This is a *developer* version. Even though *I* use it in my productive environment, I strongly recommend that you only use it under controlled conditions and for testing and debugging. From the HISTORY file: - No longer logging an error message in DirSizeMB() if the given directory doesn't exist. This avoids lots of log entries in case several VDRs use the same video directory and one of them has already physically removed a recording directory, while the others still have it in their list of deleted recordings. - Updated the Italian OSD texts (thanks to Diego Pierotto). - A cCamSlot that has WantsTsData set to true in its constructor now also gets the CAT and EMM PIDs data. - Fixed a possible division by zero in frame rate detection. - VDR now reads command line options from *.conf files in /etc/vdr/conf.d (thanks to Lars Hanisch). See vdr.1 and vdr.5 for details. - Fixed a possible crash in the LCARS skin (thanks to Thomas Reufer). - Updated the dvbhddevice plugin source. - Fixed a bug in the Makefile when installing plugins with LCLBLD=1 (thanks to Stefan Huelswitt). - The pid of the PMT in which the CA descriptors of a given channel are broadcast is now stored together with the CA descriptors and can be retrieved by calling GetPmtPid() (this information is only required to receive encrypted channels with the OctopusNet receiver via the 'satip' plugin). - Channels that are not listed in the SDT are now only marked as OBSOLETE if "Setup/DVB/Update channels" is set to a value other than "no" or "PIDs only". - Fixed multiple OBSOLETE marks in channels that are not listed in the SDT in case "Setup/Miscellaneous/Show channel names with source" is set to "yes". - The new function cOsd::DrawScaledBitmap() is now used for drawing subtitles. This function can be reimplemented by high level OSDs which may be able to do the scaling in hardware or otherwise more efficiently (thanks to Thomas Reufer). - Fixed detaching receivers from devices in case a CAM needs to receive the TS (reported by Dietmar Spingler). - Fixed resetting the receiver for EMM pids for CAMs that need to receive the TS (reported by Dietmar Spingler). - Fixed (well, actually worked around) a problem with subtitles not being displayed because the broadcaster doesn't set the data's version numbers as required by the DVB standard (thanks to Rolf Ahrenberg). - Fixed support for systemd (thanks to Christopher Reimer). - Added a missing backslash to the help text of the SVDRP command MOVR (thanks to Lars Hanisch). - Added subsystem id support for DVB devices connected via USB (thanks to Jose Alberto Reguero). - Added the functions IndexOf(), InsertUnique(), AppendUnique() and RemoveElement() to the cVector class (thanks to Stefan Schallenberg). - Fixed a possible out-of-bounds access in cVector::Remove(). - Added functions to set and retrieve the priority of a cReceiver (suggested by Frank Schmirler). - Added the new parameters "Setup/Miscellaneous/Volume steps" and ".../Volume linearize" (thanks to Claus Muus). See the MANUAL for details. - Fixed jumping to an absolute position via the Red key in case replay was paused (reported by Dieter Ferdinand). - Changed the German weekday names from "MonDieMitDonFreSamSon" to "Mo.Di.Mi.Do.Fr.Sa.So." (thanks to Stefan Blochberger). - Now handling CAT sections that consist of more than one TS packet. - Added handling for DTS audio tracks to cPatPmtParser::ParsePmt() (thanks to Thomas Reufer). - Added support for PGS subtitles (thanks to Thomas Reufer). - Use of the function cOsd::GetBitmap() outside of derived classes is now deprecated, and it may be made 'protected' in a future version, since it doesn't work with TrueColor OSDs. Plugin authors may want to modify their code so that it works without this function. - Modified the descriptions of several threads, so that the important information (like device or frontend numbers) is within the first 15 characters of the string, because only these are displayed in thread listings. Plugin authors may want to do the same. - Added the channel name to log messages that reference a channel (suggested by Dietmar Spingler). - Modified the CAM API so that it is possible to implement CAMs that can be freely assigned to any devices (thanks to Jasmin Jessich). - Plugins can now implement the function SetMenuSortMode() in their skin objects derived from cSkinDisplayMenu, to get informed about the currently used sort mode, if applicable (suggested by Martin Schirrmacher). - Added cOsdProvider::OsdSizeChanged(), which plugins that implement an output device can call to signal a change in the OSD that requires a redraw of the currently displayed object (thanks to Thomas Reufer). - Added a comment to cRecorder::Activate() about the need to call Detach() in the destructor (suggested by Eike Sauer). - Now returning from removing deleted recordings after at most 10 seconds, or if the user presses a remote control key, to keep the system from getting unresponsive when removing a huge number of files (reported by Dieter Ferdinand). - Fixed generating the index file of an existing recording in case at the of a TS file there is less data in the buffer than needed by the frame detector. In such a case it was possible that frames were missed, and there was most likely a distortion when replaying that part of a recording. This is mostly a problem for recordings that consist of more than one *.ts file. Single file recordings could only lose some frames at their very end, which probably doesn't matter. At any rate, if you have generated an index file with VDR version 2.0.6, 2.1.5 or 2.1.6, you may want to do so again with this version to make sure the index is OK. - Added the new command line option --updindex, which can be used to update an incomplete index of a recording (based on a patch from Helmut Auer).
861 lines
45 KiB
C++
861 lines
45 KiB
C++
/*
|
|
* device.h: The basic device interface
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: device.h 3.10 2015/01/12 14:39:09 kls Exp $
|
|
*/
|
|
|
|
#ifndef __DEVICE_H
|
|
#define __DEVICE_H
|
|
|
|
#include "channels.h"
|
|
#include "ci.h"
|
|
#include "dvbsubtitle.h"
|
|
#include "eit.h"
|
|
#include "filter.h"
|
|
#include "nit.h"
|
|
#include "pat.h"
|
|
#include "positioner.h"
|
|
#include "remux.h"
|
|
#include "ringbuffer.h"
|
|
#include "sdt.h"
|
|
#include "sections.h"
|
|
#include "spu.h"
|
|
#include "thread.h"
|
|
#include "tools.h"
|
|
|
|
#define MAXDEVICES 16 // the maximum number of devices in the system
|
|
#define MAXPIDHANDLES 64 // the maximum number of different PIDs per device
|
|
#define MAXRECEIVERS 16 // the maximum number of receivers per device
|
|
#define MAXVOLUME 255
|
|
#define VOLUMEDELTA (MAXVOLUME / Setup.VolumeSteps) // used to increase/decrease the volume
|
|
#define MAXOCCUPIEDTIMEOUT 99 // max. time (in seconds) a device may be occupied
|
|
|
|
enum eSetChannelResult { scrOk, scrNotAvailable, scrNoTransfer, scrFailed };
|
|
|
|
// Note that VDR itself always uses pmAudioVideo when replaying a recording!
|
|
enum ePlayMode { pmNone, // audio/video from decoder
|
|
pmAudioVideo, // audio/video from player
|
|
pmAudioOnly, // audio only from player, video from decoder
|
|
pmAudioOnlyBlack, // audio only from player, no video (black screen)
|
|
pmVideoOnly, // video only from player, audio from decoder
|
|
pmExtern_THIS_SHOULD_BE_AVOIDED
|
|
// external player (e.g. MPlayer), release the device
|
|
// WARNING: USE THIS MODE ONLY AS A LAST RESORT, IF YOU
|
|
// ABSOLUTELY, POSITIVELY CAN'T IMPLEMENT YOUR PLAYER
|
|
// THE WAY IT IS SUPPOSED TO WORK. FORCING THE DEVICE
|
|
// TO RELEASE ITS FILES HANDLES (OR WHATEVER RESOURCES
|
|
// IT MAY USE) TO ALLOW AN EXTERNAL PLAYER TO ACCESS
|
|
// THEM MEANS THAT SUCH A PLAYER WILL NEED TO HAVE
|
|
// DETAILED KNOWLEDGE ABOUT THE INTERNALS OF THE DEVICE
|
|
// IN USE. AS A CONSEQUENCE, YOUR PLAYER MAY NOT WORK
|
|
// IF A PARTICULAR VDR INSTALLATION USES A DEVICE NOT
|
|
// KNOWN TO YOUR PLAYER.
|
|
};
|
|
|
|
#define DEPRECATED_VIDEOSYSTEM
|
|
#ifdef DEPRECATED_VIDEOSYSTEM
|
|
enum eVideoSystem { vsPAL,
|
|
vsNTSC
|
|
};
|
|
#endif
|
|
|
|
enum eVideoDisplayFormat { vdfPanAndScan,
|
|
vdfLetterBox,
|
|
vdfCenterCutOut
|
|
};
|
|
|
|
enum eTrackType { ttNone,
|
|
ttAudio,
|
|
ttAudioFirst = ttAudio,
|
|
ttAudioLast = ttAudioFirst + 31, // MAXAPIDS - 1
|
|
ttDolby,
|
|
ttDolbyFirst = ttDolby,
|
|
ttDolbyLast = ttDolbyFirst + 15, // MAXDPIDS - 1
|
|
ttSubtitle,
|
|
ttSubtitleFirst = ttSubtitle,
|
|
ttSubtitleLast = ttSubtitleFirst + 31, // MAXSPIDS - 1
|
|
ttMaxTrackTypes
|
|
};
|
|
|
|
#define IS_AUDIO_TRACK(t) (ttAudioFirst <= (t) && (t) <= ttAudioLast)
|
|
#define IS_DOLBY_TRACK(t) (ttDolbyFirst <= (t) && (t) <= ttDolbyLast)
|
|
#define IS_SUBTITLE_TRACK(t) (ttSubtitleFirst <= (t) && (t) <= ttSubtitleLast)
|
|
|
|
struct tTrackId {
|
|
uint16_t id; // The PES packet id or the PID.
|
|
char language[MAXLANGCODE2]; // something like either "eng" or "deu+eng"
|
|
char description[32]; // something like "Dolby Digital 5.1"
|
|
};
|
|
|
|
class cPlayer;
|
|
class cReceiver;
|
|
class cLiveSubtitle;
|
|
|
|
class cDeviceHook : public cListObject {
|
|
public:
|
|
cDeviceHook(void);
|
|
///< Creates a new device hook object.
|
|
///< Do not delete this object - it will be automatically deleted when the
|
|
///< program ends.
|
|
virtual bool DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const;
|
|
///< Returns true if the given Device can provide the given Channel's transponder.
|
|
};
|
|
|
|
/// The cDevice class is the base from which actual devices can be derived.
|
|
|
|
class cDevice : public cThread {
|
|
friend class cLiveSubtitle;
|
|
friend class cDeviceHook;
|
|
private:
|
|
static int numDevices;
|
|
static int useDevice;
|
|
static cDevice *device[MAXDEVICES];
|
|
static cDevice *primaryDevice;
|
|
public:
|
|
static int NumDevices(void) { return numDevices; }
|
|
///< Returns the total number of devices.
|
|
static bool WaitForAllDevicesReady(int Timeout = 0);
|
|
///< Waits until all devices have become ready, or the given Timeout
|
|
///< (seconds) has expired. While waiting, the Ready() function of each
|
|
///< device is called in turn, until they all return true.
|
|
///< Returns true if all devices have become ready within the given
|
|
///< timeout.
|
|
static void SetUseDevice(int n);
|
|
///< Sets the 'useDevice' flag of the given device.
|
|
///< If this function is not called before initializing, all devices
|
|
///< will be used.
|
|
static bool UseDevice(int n) { return useDevice == 0 || (useDevice & (1 << n)) != 0; }
|
|
///< Tells whether the device with the given card index shall be used in
|
|
///< this instance of VDR.
|
|
static bool SetPrimaryDevice(int n);
|
|
///< Sets the primary device to 'n'.
|
|
///< n must be in the range 1...numDevices.
|
|
///< Returns true if this was possible.
|
|
static cDevice *PrimaryDevice(void) { return primaryDevice; }
|
|
///< Returns the primary device.
|
|
static cDevice *ActualDevice(void);
|
|
///< Returns the actual receiving device in case of Transfer Mode, or the
|
|
///< primary device otherwise.
|
|
static cDevice *GetDevice(int Index);
|
|
///< Gets the device with the given Index.
|
|
///< Index must be in the range 0..numDevices-1.
|
|
///< Returns a pointer to the device, or NULL if the Index was invalid.
|
|
static cDevice *GetDevice(const cChannel *Channel, int Priority, bool LiveView, bool Query = false);
|
|
///< Returns a device that is able to receive the given Channel at the
|
|
///< given Priority, with the least impact on active recordings and
|
|
///< live viewing. The LiveView parameter tells whether the device will
|
|
///< be used for live viewing or a recording.
|
|
///< If the Channel is encrypted, a CAM slot that claims to be able to
|
|
///< decrypt the channel is automatically selected and assigned to the
|
|
///< returned device. Whether or not this combination of device and CAM
|
|
///< slot is actually able to decrypt the channel can only be determined
|
|
///< by checking the "scrambling control" bits of the received TS packets.
|
|
///< The Action() function automatically does this and takes care that
|
|
///< after detaching any receivers because the channel can't be decrypted,
|
|
///< this device/CAM combination will be skipped in the next call to
|
|
///< GetDevice().
|
|
///< If Query is true, no actual CAM assignments or receiver detachments will
|
|
///< be done, so that this function can be called without any side effects
|
|
///< in order to just determine whether a device is available for the given
|
|
///< Channel.
|
|
///< See also ProvidesChannel().
|
|
static cDevice *GetDeviceForTransponder(const cChannel *Channel, int Priority);
|
|
///< Returns a device that is not currently "occupied" and can be tuned to
|
|
///< the transponder of the given Channel, without disturbing any receiver
|
|
///< at priorities higher or equal to Priority.
|
|
///< If no such device is currently available, NULL will be returned.
|
|
static void Shutdown(void);
|
|
///< Closes down all devices.
|
|
///< Must be called at the end of the program.
|
|
private:
|
|
static int nextCardIndex;
|
|
int cardIndex;
|
|
protected:
|
|
cDevice(void);
|
|
virtual ~cDevice();
|
|
virtual bool Ready(void);
|
|
///< Returns true if this device is ready. Devices with conditional
|
|
///< access hardware may need some time until they are up and running.
|
|
///< This function is called in a loop at startup until all devices
|
|
///< are ready (see WaitForAllDevicesReady()).
|
|
static int NextCardIndex(int n = 0);
|
|
///< Calculates the next card index.
|
|
///< Each device in a given machine must have a unique card index, which
|
|
///< will be used to identify the device for assigning Ca parameters and
|
|
///< deciding whether to actually use that device in this particular
|
|
///< instance of VDR. Every time a new cDevice is created, it will be
|
|
///< given the current nextCardIndex, and then nextCardIndex will be
|
|
///< automatically incremented by 1. A derived class can determine whether
|
|
///< a given device shall be used by checking UseDevice(NextCardIndex()).
|
|
///< If a device is skipped, or if there are possible device indexes left
|
|
///< after a derived class has set up all its devices, NextCardIndex(n)
|
|
///< must be called, where n is the number of card indexes to skip.
|
|
virtual void MakePrimaryDevice(bool On);
|
|
///< Informs a device that it will be the primary device. If there is
|
|
///< anything the device needs to set up when it becomes the primary
|
|
///< device (On = true) or to shut down when it no longer is the primary
|
|
///< device (On = false), it should do so in this function.
|
|
///< A derived class must call the MakePrimaryDevice() function of its
|
|
///< base class.
|
|
public:
|
|
bool IsPrimaryDevice(void) const { return this == primaryDevice && HasDecoder(); }
|
|
int CardIndex(void) const { return cardIndex; }
|
|
///< Returns the card index of this device (0 ... MAXDEVICES - 1).
|
|
int DeviceNumber(void) const;
|
|
///< Returns the number of this device (0 ... numDevices - 1).
|
|
virtual cString DeviceType(void) const;
|
|
///< Returns a string identifying the type of this device (like "DVB-S").
|
|
///< If this device can receive different delivery systems, the returned
|
|
///< string shall be that of the currently used system.
|
|
///< The length of the returned string should not exceed 6 characters.
|
|
///< The default implementation returns an empty string.
|
|
virtual cString DeviceName(void) const;
|
|
///< Returns a string identifying the name of this device.
|
|
///< The default implementation returns an empty string.
|
|
virtual bool HasDecoder(void) const;
|
|
///< Tells whether this device has an MPEG decoder.
|
|
virtual bool AvoidRecording(void) const { return false; }
|
|
///< Returns true if this device should only be used for recording
|
|
///< if no other device is available.
|
|
|
|
// Device hooks
|
|
|
|
private:
|
|
static cList<cDeviceHook> deviceHooks;
|
|
protected:
|
|
bool DeviceHooksProvidesTransponder(const cChannel *Channel) const;
|
|
|
|
// SPU facilities
|
|
|
|
private:
|
|
cLiveSubtitle *liveSubtitle;
|
|
cDvbSubtitleConverter *dvbSubtitleConverter;
|
|
public:
|
|
virtual cSpuDecoder *GetSpuDecoder(void);
|
|
///< Returns a pointer to the device's SPU decoder (or NULL, if this
|
|
///< device doesn't have an SPU decoder).
|
|
|
|
// Channel facilities
|
|
|
|
private:
|
|
time_t occupiedTimeout;
|
|
protected:
|
|
static int currentChannel;
|
|
public:
|
|
virtual bool ProvidesSource(int Source) const;
|
|
///< Returns true if this device can provide the given source.
|
|
virtual bool ProvidesTransponder(const cChannel *Channel) const;
|
|
///< Returns true if this device can provide the transponder of the
|
|
///< given Channel (which implies that it can provide the Channel's
|
|
///< source).
|
|
virtual bool ProvidesTransponderExclusively(const cChannel *Channel) const;
|
|
///< Returns true if this is the only device that is able to provide
|
|
///< the given channel's transponder.
|
|
virtual bool ProvidesChannel(const cChannel *Channel, int Priority = IDLEPRIORITY, bool *NeedsDetachReceivers = NULL) const;
|
|
///< Returns true if this device can provide the given channel.
|
|
///< In case the device has cReceivers attached to it, Priority is used to
|
|
///< decide whether the caller's request can be honored.
|
|
///< The special Priority value IDLEPRIORITY will tell the caller whether this device
|
|
///< is principally able to provide the given Channel, regardless of any
|
|
///< attached cReceivers.
|
|
///< If NeedsDetachReceivers is given, the resulting value in it will tell the
|
|
///< caller whether or not it will have to detach any currently attached
|
|
///< receivers from this device before calling SwitchChannel. Note
|
|
///< that the return value in NeedsDetachReceivers is only meaningful if the
|
|
///< function itself actually returns true.
|
|
///< The default implementation always returns false, so a derived cDevice
|
|
///< class that can provide channels must implement this function.
|
|
virtual bool ProvidesEIT(void) const;
|
|
///< Returns true if this device provides EIT data and thus wants to be tuned
|
|
///< to the channels it can receive regularly to update the data.
|
|
///< The default implementation returns false.
|
|
virtual int NumProvidedSystems(void) const;
|
|
///< Returns the number of individual "delivery systems" this device provides.
|
|
///< The default implementation returns 0, so any derived class that can
|
|
///< actually provide channels must implement this function.
|
|
///< The result of this function is used when selecting a device, in order
|
|
///< to avoid devices that provide more than one system.
|
|
virtual const cPositioner *Positioner(void) const;
|
|
///< Returns a pointer to the positioner (if any) this device has used to
|
|
///< move the satellite dish to the requested position (only applies to DVB-S
|
|
///< devices). If no positioner is involved, or this is not a DVB-S device,
|
|
///< NULL will be returned.
|
|
virtual int SignalStrength(void) const;
|
|
///< Returns the "strength" of the currently received signal.
|
|
///< This is a value in the range 0 (no signal at all) through
|
|
///< 100 (best possible signal). A value of -1 indicates that this
|
|
///< device has no concept of a "signal strength".
|
|
virtual int SignalQuality(void) const;
|
|
///< Returns the "quality" of the currently received signal.
|
|
///< This is a value in the range 0 (worst quality) through
|
|
///< 100 (best possible quality). A value of -1 indicates that this
|
|
///< device has no concept of a "signal quality".
|
|
virtual const cChannel *GetCurrentlyTunedTransponder(void) const;
|
|
///< Returns a pointer to the currently tuned transponder.
|
|
///< This is not one of the channels in the global cChannels list, but rather
|
|
///< a local copy. The result may be NULL if the device is not tuned to any
|
|
///< transponder.
|
|
virtual bool IsTunedToTransponder(const cChannel *Channel) const;
|
|
///< Returns true if this device is currently tuned to the given Channel's
|
|
///< transponder.
|
|
virtual bool MaySwitchTransponder(const cChannel *Channel) const;
|
|
///< Returns true if it is ok to switch to the Channel's transponder on this
|
|
///< device, without disturbing any other activities. If an occupied timeout
|
|
///< has been set for this device, and that timeout has not yet expired,
|
|
///< this function returns false,
|
|
bool SwitchChannel(const cChannel *Channel, bool LiveView);
|
|
///< Switches the device to the given Channel, initiating transfer mode
|
|
///< if necessary.
|
|
static bool SwitchChannel(int Direction);
|
|
///< Switches the primary device to the next available channel in the given
|
|
///< Direction (only the sign of Direction is evaluated, positive values
|
|
///< switch to higher channel numbers).
|
|
private:
|
|
eSetChannelResult SetChannel(const cChannel *Channel, bool LiveView);
|
|
///< Sets the device to the given channel (general setup).
|
|
protected:
|
|
virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView);
|
|
///< Sets the device to the given channel (actual physical setup).
|
|
public:
|
|
static int CurrentChannel(void) { return primaryDevice ? currentChannel : 0; }
|
|
///< Returns the number of the current channel on the primary device.
|
|
static void SetCurrentChannel(const cChannel *Channel) { currentChannel = Channel ? Channel->Number() : 0; }
|
|
///< Sets the number of the current channel on the primary device, without
|
|
///< actually switching to it. This can be used to correct the current
|
|
///< channel number while replaying.
|
|
void ForceTransferMode(void);
|
|
///< Forces the device into transfermode for the current channel.
|
|
int Occupied(void) const;
|
|
///< Returns the number of seconds this device is still occupied for.
|
|
void SetOccupied(int Seconds);
|
|
///< Sets the occupied timeout for this device to the given number of
|
|
///< Seconds, This can be used to tune a device to a particular transponder
|
|
///< and make sure it will stay there for a certain amount of time, for
|
|
///< instance to collect EPG data. This function shall only be called
|
|
///< after the device has been successfully tuned to the requested transponder.
|
|
///< Seconds will be silently limited to MAXOCCUPIEDTIMEOUT. Values less than
|
|
///< 0 will be silently ignored.
|
|
virtual bool HasLock(int TimeoutMs = 0) const;
|
|
///< Returns true if the device has a lock on the requested transponder.
|
|
///< Default is true, a specific device implementation may return false
|
|
///< to indicate that it is not ready yet.
|
|
///< If TimeoutMs is not zero, waits for the given number of milliseconds
|
|
///< before returning false.
|
|
virtual bool HasProgramme(void) const;
|
|
///< Returns true if the device is currently showing any programme to
|
|
///< the user, either through replaying or live.
|
|
|
|
// PID handle facilities
|
|
|
|
private:
|
|
virtual void Action(void);
|
|
protected:
|
|
enum ePidType { ptAudio, ptVideo, ptPcr, ptTeletext, ptDolby, ptOther };
|
|
class cPidHandle {
|
|
public:
|
|
int pid;
|
|
int streamType;
|
|
int handle;
|
|
int used;
|
|
cPidHandle(void) { pid = streamType = used = 0; handle = -1; }
|
|
};
|
|
cPidHandle pidHandles[MAXPIDHANDLES];
|
|
bool HasPid(int Pid) const;
|
|
///< Returns true if this device is currently receiving the given PID.
|
|
bool AddPid(int Pid, ePidType PidType = ptOther, int StreamType = 0);
|
|
///< Adds a PID to the set of PIDs this device shall receive.
|
|
void DelPid(int Pid, ePidType PidType = ptOther);
|
|
///< Deletes a PID from the set of PIDs this device shall receive.
|
|
virtual bool SetPid(cPidHandle *Handle, int Type, bool On);
|
|
///< Does the actual PID setting on this device.
|
|
///< On indicates whether the PID shall be added or deleted.
|
|
///< Handle->handle can be used by the device to store information it
|
|
///< needs to receive this PID (for instance a file handle).
|
|
///< Handle->used indicates how many receivers are using this PID.
|
|
///< Type indicates some special types of PIDs, which the device may
|
|
///< need to set in a specific way.
|
|
public:
|
|
void DelLivePids(void);
|
|
///< Deletes the live viewing PIDs.
|
|
|
|
// Section filter facilities
|
|
|
|
private:
|
|
cSectionHandler *sectionHandler;
|
|
cEitFilter *eitFilter;
|
|
cPatFilter *patFilter;
|
|
cSdtFilter *sdtFilter;
|
|
cNitFilter *nitFilter;
|
|
protected:
|
|
void StartSectionHandler(void);
|
|
///< A derived device that provides section data must call
|
|
///< this function (typically in its constructor) to actually set
|
|
///< up the section handler.
|
|
void StopSectionHandler(void);
|
|
///< A device that has called StartSectionHandler() must call this
|
|
///< function (typically in its destructor) to stop the section
|
|
///< handler.
|
|
public:
|
|
virtual int OpenFilter(u_short Pid, u_char Tid, u_char Mask);
|
|
///< Opens a file handle for the given filter data.
|
|
///< A derived device that provides section data must
|
|
///< implement this function.
|
|
virtual int ReadFilter(int Handle, void *Buffer, size_t Length);
|
|
///< Reads data from a handle for the given filter.
|
|
///< A derived class need not implement this function, because this
|
|
///< is done by the default implementation.
|
|
virtual void CloseFilter(int Handle);
|
|
///< Closes a file handle that has previously been opened
|
|
///< by OpenFilter(). If this is as simple as calling close(Handle),
|
|
///< a derived class need not implement this function, because this
|
|
///< is done by the default implementation.
|
|
void AttachFilter(cFilter *Filter);
|
|
///< Attaches the given filter to this device.
|
|
void Detach(cFilter *Filter);
|
|
///< Detaches the given filter from this device.
|
|
|
|
// Common Interface facilities:
|
|
|
|
private:
|
|
time_t startScrambleDetection;
|
|
cCamSlot *camSlot;
|
|
public:
|
|
virtual bool HasCi(void);
|
|
///< Returns true if this device has a Common Interface.
|
|
virtual bool HasInternalCam(void) { return false; }
|
|
///< Returns true if this device handles encrypted channels itself
|
|
///< without VDR assistance. This can be e.g. if the device is a
|
|
///< client that gets the stream from another VDR instance that has
|
|
///< already decrypted the stream. In this case ProvidesChannel()
|
|
///< shall check whether the channel can be decrypted.
|
|
void SetCamSlot(cCamSlot *CamSlot);
|
|
///< Sets the given CamSlot to be used with this device.
|
|
cCamSlot *CamSlot(void) const { return camSlot; }
|
|
///< Returns the CAM slot that is currently used with this device,
|
|
///< or NULL if no CAM slot is in use.
|
|
|
|
// Image Grab facilities
|
|
|
|
public:
|
|
virtual uchar *GrabImage(int &Size, bool Jpeg = true, int Quality = -1, int SizeX = -1, int SizeY = -1);
|
|
///< Grabs the currently visible screen image.
|
|
///< Size is the size of the returned data block.
|
|
///< If Jpeg is true it will write a JPEG file. Otherwise a PNM file will be written.
|
|
///< Quality is the compression factor for JPEG. 1 will create a very blocky
|
|
///< and small image, 70..80 will yield reasonable quality images while keeping the
|
|
///< image file size around 50 KB for a full frame. The default will create a big
|
|
///< but very high quality image.
|
|
///< SizeX is the number of horizontal pixels in the frame (default is the current screen width).
|
|
///< SizeY is the number of vertical pixels in the frame (default is the current screen height).
|
|
///< Returns a pointer to the grabbed image data, or NULL in case of an error.
|
|
///< The caller takes ownership of the returned memory and must free() it once it isn't needed any more.
|
|
bool GrabImageFile(const char *FileName, bool Jpeg = true, int Quality = -1, int SizeX = -1, int SizeY = -1);
|
|
///< Calls GrabImage() and stores the resulting image in a file with the given name.
|
|
///< Returns true if all went well.
|
|
///< The caller is responsible for making sure that the given file name
|
|
///< doesn't lead to overwriting any important other file.
|
|
|
|
// Video format facilities
|
|
|
|
public:
|
|
virtual void SetVideoDisplayFormat(eVideoDisplayFormat VideoDisplayFormat);
|
|
///< Sets the video display format to the given one (only useful
|
|
///< if this device has an MPEG decoder).
|
|
///< A derived class must first call the base class function!
|
|
///< NOTE: this is only for SD devices. HD devices shall implement their
|
|
///< own setup menu with the necessary parameters for controlling output.
|
|
virtual void SetVideoFormat(bool VideoFormat16_9);
|
|
///< Sets the output video format to either 16:9 or 4:3 (only useful
|
|
///< if this device has an MPEG decoder).
|
|
///< NOTE: this is only for SD devices. HD devices shall implement their
|
|
///< own setup menu with the necessary parameters for controlling output.
|
|
#ifdef DEPRECATED_VIDEOSYSTEM
|
|
virtual eVideoSystem GetVideoSystem(void) { return vsPAL; }
|
|
///< Returns the video system of the currently displayed material
|
|
///< (default is PAL).
|
|
///< This function is deprecated and will be removed in a future version!
|
|
#endif
|
|
virtual void GetVideoSize(int &Width, int &Height, double &VideoAspect);
|
|
///< Returns the Width, Height and VideoAspect ratio of the currently
|
|
///< displayed video material. Width and Height are given in pixel
|
|
///< (e.g. 720x576) and VideoAspect is e.g. 1.33333 for a 4:3 broadcast,
|
|
///< or 1.77778 for 16:9.
|
|
///< The default implementation returns 0 for Width and Height
|
|
///< and 1.0 for VideoAspect.
|
|
virtual void GetOsdSize(int &Width, int &Height, double &PixelAspect);
|
|
///< Returns the Width, Height and PixelAspect ratio the OSD should use
|
|
///< to best fit the resolution of the output device. If PixelAspect
|
|
///< is not 1.0, the OSD may take this as a hint to scale its
|
|
///< graphics in a way that, e.g., a circle will actually
|
|
///< show up as a circle on the screen, and not as an ellipse.
|
|
///< Values greater than 1.0 mean to stretch the graphics in the
|
|
///< vertical direction (or shrink it in the horizontal direction,
|
|
///< depending on which dimension shall be fixed). Values less than
|
|
///< 1.0 work the other way round. Note that the OSD is not guaranteed
|
|
///< to actually use this hint.
|
|
|
|
// Track facilities
|
|
|
|
private:
|
|
tTrackId availableTracks[ttMaxTrackTypes];
|
|
eTrackType currentAudioTrack;
|
|
eTrackType currentSubtitleTrack;
|
|
cMutex mutexCurrentAudioTrack;
|
|
cMutex mutexCurrentSubtitleTrack;
|
|
int currentAudioTrackMissingCount;
|
|
bool autoSelectPreferredSubtitleLanguage;
|
|
bool keepTracks;
|
|
int pre_1_3_19_PrivateStream;
|
|
protected:
|
|
virtual void SetAudioTrackDevice(eTrackType Type);
|
|
///< Sets the current audio track to the given value.
|
|
virtual void SetSubtitleTrackDevice(eTrackType Type);
|
|
///< Sets the current subtitle track to the given value.
|
|
public:
|
|
void ClrAvailableTracks(bool DescriptionsOnly = false, bool IdsOnly = false);
|
|
///< Clears the list of currently available tracks. If DescriptionsOnly
|
|
///< is true, only the track descriptions will be cleared. With IdsOnly
|
|
///< set to true only the ids will be cleared. IdsOnly is only taken
|
|
///< into account if DescriptionsOnly is false.
|
|
bool SetAvailableTrack(eTrackType Type, int Index, uint16_t Id, const char *Language = NULL, const char *Description = NULL);
|
|
///< Sets the track of the given Type and Index to the given values.
|
|
///< Type must be one of the basic eTrackType values, like ttAudio or ttDolby.
|
|
///< Index tells which track of the given basic type is meant.
|
|
///< If Id is 0 any existing id will be left untouched and only the
|
|
///< given Language and Description will be set.
|
|
///< Returns true if the track was set correctly, false otherwise.
|
|
const tTrackId *GetTrack(eTrackType Type);
|
|
///< Returns a pointer to the given track id, or NULL if Type is not
|
|
///< less than ttMaxTrackTypes.
|
|
int NumTracks(eTrackType FirstTrack, eTrackType LastTrack) const;
|
|
///< Returns the number of tracks in the given range that are currently
|
|
///< available.
|
|
int NumAudioTracks(void) const;
|
|
///< Returns the number of audio tracks that are currently available.
|
|
///< This is just for information, to quickly find out whether there
|
|
///< is more than one audio track.
|
|
int NumSubtitleTracks(void) const;
|
|
///< Returns the number of subtitle tracks that are currently available.
|
|
eTrackType GetCurrentAudioTrack(void) const { return currentAudioTrack; }
|
|
bool SetCurrentAudioTrack(eTrackType Type);
|
|
///< Sets the current audio track to the given Type.
|
|
///< Returns true if Type is a valid audio track, false otherwise.
|
|
eTrackType GetCurrentSubtitleTrack(void) const { return currentSubtitleTrack; }
|
|
bool SetCurrentSubtitleTrack(eTrackType Type, bool Manual = false);
|
|
///< Sets the current subtitle track to the given Type.
|
|
///< IF Manual is true, no automatic preferred subtitle language selection
|
|
///< will be done for the rest of the current replay session, or until
|
|
///< the channel is changed.
|
|
///< Returns true if Type is a valid subtitle track, false otherwise.
|
|
void EnsureAudioTrack(bool Force = false);
|
|
///< Makes sure an audio track is selected that is actually available.
|
|
///< If Force is true, the language and Dolby Digital settings will
|
|
///< be verified even if the current audio track is available.
|
|
void EnsureSubtitleTrack(void);
|
|
///< Makes sure one of the preferred language subtitle tracks is selected.
|
|
///< Only has an effect if Setup.DisplaySubtitles is on.
|
|
void SetKeepTracks(bool KeepTracks) { keepTracks = KeepTracks; }
|
|
///< Controls whether the current audio and subtitle track settings shall
|
|
///< be kept as they currently are, or if they shall be automatically
|
|
///< adjusted. This is used when pausing live video.
|
|
|
|
// Audio facilities
|
|
|
|
private:
|
|
bool mute;
|
|
int volume;
|
|
protected:
|
|
virtual int GetAudioChannelDevice(void);
|
|
///< Gets the current audio channel, which is stereo (0), mono left (1) or
|
|
///< mono right (2).
|
|
virtual void SetAudioChannelDevice(int AudioChannel);
|
|
///< Sets the audio channel to stereo (0), mono left (1) or mono right (2).
|
|
virtual void SetVolumeDevice(int Volume);
|
|
///< Sets the audio volume on this device (Volume = 0...255).
|
|
virtual void SetDigitalAudioDevice(bool On);
|
|
///< Tells the output device that the current audio track is Dolby Digital.
|
|
///< Only used by the original "full featured" DVB cards - do not use for new
|
|
///< developments!
|
|
public:
|
|
bool IsMute(void) const { return mute; }
|
|
bool ToggleMute(void);
|
|
///< Turns the volume off or on and returns the new mute state.
|
|
int GetAudioChannel(void);
|
|
///< Gets the current audio channel, which is stereo (0), mono left (1) or
|
|
///< mono right (2).
|
|
void SetAudioChannel(int AudioChannel);
|
|
///< Sets the audio channel to stereo (0), mono left (1) or mono right (2).
|
|
///< Any other values will be silently ignored.
|
|
void SetVolume(int Volume, bool Absolute = false);
|
|
///< Sets the volume to the given value, either absolutely or relative to
|
|
///< the current volume.
|
|
static int CurrentVolume(void) { return primaryDevice ? primaryDevice->volume : 0; }//XXX???
|
|
|
|
// Player facilities
|
|
|
|
private:
|
|
cPlayer *player;
|
|
cPatPmtParser patPmtParser;
|
|
cTsToPes tsToPesVideo;
|
|
cTsToPes tsToPesAudio;
|
|
cTsToPes tsToPesSubtitle;
|
|
bool isPlayingVideo;
|
|
protected:
|
|
const cPatPmtParser *PatPmtParser(void) const { return &patPmtParser; }
|
|
///< Returns a pointer to the patPmtParser, so that a derived device
|
|
///< can use the stream information from it.
|
|
virtual bool CanReplay(void) const;
|
|
///< Returns true if this device can currently start a replay session.
|
|
virtual bool SetPlayMode(ePlayMode PlayMode);
|
|
///< Sets the device into the given play mode.
|
|
///< Returns true if the operation was successful.
|
|
virtual int PlayVideo(const uchar *Data, int Length);
|
|
///< Plays the given data block as video.
|
|
///< Data points to exactly one complete PES packet of the given Length.
|
|
///< PlayVideo() shall process the packet either as a whole (returning
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' accordingly).
|
|
///< Returns the number of bytes actually taken from Data, or -1
|
|
///< in case of an error.
|
|
virtual int PlayAudio(const uchar *Data, int Length, uchar Id);
|
|
///< Plays the given data block as audio.
|
|
///< Data points to exactly one complete PES packet of the given Length.
|
|
///< Id indicates the type of audio data this packet holds.
|
|
///< PlayAudio() shall process the packet either as a whole (returning
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' accordingly).
|
|
///< Returns the number of bytes actually taken from Data, or -1
|
|
///< in case of an error.
|
|
virtual int PlaySubtitle(const uchar *Data, int Length);
|
|
///< Plays the given data block as a subtitle.
|
|
///< Data points to exactly one complete PES packet of the given Length.
|
|
///< PlaySubtitle() shall process the packet either as a whole (returning
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' accordingly).
|
|
///< Returns the number of bytes actually taken from Data, or -1
|
|
///< in case of an error.
|
|
virtual int PlayPesPacket(const uchar *Data, int Length, bool VideoOnly = false);
|
|
///< Plays the single PES packet in Data with the given Length.
|
|
///< If VideoOnly is true, only the video will be displayed,
|
|
///< which is necessary for trick modes like 'fast forward'.
|
|
///< Data must point to one single, complete PES packet.
|
|
virtual int PlayTsVideo(const uchar *Data, int Length);
|
|
///< Plays the given data block as video.
|
|
///< Data points to exactly one complete TS packet of the given Length
|
|
///< (which is always TS_SIZE).
|
|
///< PlayTsVideo() shall process the packet either as a whole (returning
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' accordingly).
|
|
///< The default implementation collects all incoming TS payload belonging
|
|
///< to one PES packet and calls PlayVideo() with the resulting packet.
|
|
virtual int PlayTsAudio(const uchar *Data, int Length);
|
|
///< Plays the given data block as audio.
|
|
///< Data points to exactly one complete TS packet of the given Length
|
|
///< (which is always TS_SIZE).
|
|
///< PlayTsAudio() shall process the packet either as a whole (returning
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' accordingly).
|
|
///< The default implementation collects all incoming TS payload belonging
|
|
///< to one PES packet and calls PlayAudio() with the resulting packet.
|
|
virtual int PlayTsSubtitle(const uchar *Data, int Length);
|
|
///< Plays the given data block as a subtitle.
|
|
///< Data points to exactly one complete TS packet of the given Length
|
|
///< (which is always TS_SIZE).
|
|
///< PlayTsSubtitle() shall process the packet either as a whole (returning
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' accordingly).
|
|
///< The default implementation collects all incoming TS payload belonging
|
|
///< to one PES packet and displays the resulting subtitle via the OSD.
|
|
public:
|
|
virtual int64_t GetSTC(void);
|
|
///< Gets the current System Time Counter, which can be used to
|
|
///< synchronize audio, video and subtitles. If this device is able to
|
|
///< replay, it must provide an STC.
|
|
///< The value returned doesn't need to be an actual "clock" value,
|
|
///< it is sufficient if it holds the PTS (Presentation Time Stamp) of
|
|
///< the most recently presented frame. A proper value must be returned
|
|
///< in normal replay mode as well as in any trick modes (like slow motion,
|
|
///< fast forward/rewind).
|
|
///< Only the lower 32 bit of this value are actually used, since some
|
|
///< devices can't handle the msb correctly.
|
|
virtual bool IsPlayingVideo(void) const { return isPlayingVideo; }
|
|
///< Returns true if the currently attached player has delivered
|
|
///< any video packets.
|
|
virtual cRect CanScaleVideo(const cRect &Rect, int Alignment = taCenter) { return cRect::Null; }
|
|
///< Asks the output device whether it can scale the currently shown video in
|
|
///< such a way that it fits into the given Rect, while retaining its proper
|
|
///< aspect ratio. If the scaled video doesn't exactly fit into Rect, Alignment
|
|
///< is used to determine how to align the actual rectangle with the requested
|
|
///< one. The actual rectangle can be smaller, larger or the same size as the
|
|
///< given Rect, and its location may differ, depending on the capabilities of
|
|
///< the output device, which may not be able to display a scaled video at
|
|
///< arbitrary sizes and locations. The device shall, however, do its best to
|
|
///< match the requested Rect as closely as possible, preferring a size and
|
|
///< location that fits completely into the requested Rect if possible.
|
|
///< Returns the rectangle that can actually be used when scaling the video.
|
|
///< A skin plugin using this function should rearrange its content according
|
|
///< to the rectangle returned from calling this function, and should especially
|
|
///< be prepared for cases where the returned rectangle is way off the requested
|
|
///< Rect, or even Null. In such cases, the skin may want to fall back to
|
|
///< working with full screen video.
|
|
///< The coordinates of Rect are in the range of the width and height returned
|
|
///< by GetOsdSize().
|
|
///< If this device can't scale the video, a Null rectangle is returned (this
|
|
///< is also the default implementation).
|
|
virtual void ScaleVideo(const cRect &Rect = cRect::Null) {}
|
|
///< Scales the currently shown video in such a way that it fits into the given
|
|
///< Rect. Rect should be one retrieved through a previous call to
|
|
///< CanScaleVideo() (otherwise results may be undefined).
|
|
///< Even if video output is scaled, the functions GetVideoSize() and
|
|
///< GetOsdSize() must still return the same values as if in full screen mode!
|
|
///< If this device can't scale the video, nothing happens.
|
|
///< To restore full screen video, call this function with a Null rectangle.
|
|
virtual bool HasIBPTrickSpeed(void) { return false; }
|
|
///< Returns true if this device can handle all frames in 'fast forward'
|
|
///< trick speeds.
|
|
virtual void TrickSpeed(int Speed, bool Forward);
|
|
///< Sets the device into a mode where replay is done slower.
|
|
///< Every single frame shall then be displayed the given number of
|
|
///< times. Forward is true if replay is done in the normal (forward)
|
|
///< direction, false if it is done reverse.
|
|
///< The cDvbPlayer uses the following values for the various speeds:
|
|
///< 1x 2x 3x
|
|
///< Fast Forward 6 3 1
|
|
///< Fast Reverse 6 3 1
|
|
///< Slow Forward 8 4 2
|
|
///< Slow Reverse 63 48 24
|
|
virtual void Clear(void);
|
|
///< Clears all video and audio data from the device.
|
|
///< A derived class must call the base class function to make sure
|
|
///< all registered cAudio objects are notified.
|
|
virtual void Play(void);
|
|
///< Sets the device into play mode (after a previous trick
|
|
///< mode).
|
|
virtual void Freeze(void);
|
|
///< Puts the device into "freeze frame" mode.
|
|
virtual void Mute(void);
|
|
///< Turns off audio while replaying.
|
|
///< A derived class must call the base class function to make sure
|
|
///< all registered cAudio objects are notified.
|
|
virtual void StillPicture(const uchar *Data, int Length);
|
|
///< Displays the given I-frame as a still picture.
|
|
///< Data points either to a series of TS (first byte is 0x47) or PES (first byte
|
|
///< is 0x00) data of the given Length. The default implementation
|
|
///< converts TS to PES and calls itself again, allowing a derived class
|
|
///< to display PES if it can't handle TS directly.
|
|
virtual bool Poll(cPoller &Poller, int TimeoutMs = 0);
|
|
///< Returns true if the device itself or any of the file handles in
|
|
///< Poller is ready for further action.
|
|
///< If TimeoutMs is not zero, the device will wait up to the given number
|
|
///< of milliseconds before returning in case it can't accept any data.
|
|
virtual bool Flush(int TimeoutMs = 0);
|
|
///< Returns true if the device's output buffers are empty, i. e. any
|
|
///< data which was buffered so far has been processed.
|
|
///< If TimeoutMs is not zero, the device will wait up to the given
|
|
///< number of milliseconds before returning in case there is still
|
|
///< data in the buffers.
|
|
virtual int PlayPes(const uchar *Data, int Length, bool VideoOnly = false);
|
|
///< Plays all valid PES packets in Data with the given Length.
|
|
///< If Data is NULL any leftover data from a previous call will be
|
|
///< discarded. If VideoOnly is true, only the video will be displayed,
|
|
///< which is necessary for trick modes like 'fast forward'.
|
|
///< Data should point to a sequence of complete PES packets. If the
|
|
///< last packet in Data is not complete, it will be copied and combined
|
|
///< to a complete packet with data from the next call to PlayPes().
|
|
///< That way any functions called from within PlayPes() will be
|
|
///< guaranteed to always receive complete PES packets.
|
|
virtual int PlayTs(const uchar *Data, int Length, bool VideoOnly = false);
|
|
///< Plays the given TS packet.
|
|
///< If VideoOnly is true, only the video will be displayed,
|
|
///< which is necessary for trick modes like 'fast forward'.
|
|
///< Data points to a single TS packet, Length is always TS_SIZE (the total
|
|
///< size of a single TS packet).
|
|
///< If Data is NULL any leftover data from a previous call will be
|
|
///< discarded.
|
|
///< A derived device can reimplement this function to handle the
|
|
///< TS packets itself. Any packets the derived function can't handle
|
|
///< must be sent to the base class function. This applies especially
|
|
///< to the PAT/PMT packets.
|
|
///< Returns -1 in case of error, otherwise the number of actually
|
|
///< processed bytes is returned.
|
|
///< PlayTs() shall process the TS packets either as a whole (returning
|
|
///< TS_SIZE) or not at all, returning 0 or -1 and setting 'errno' accordingly).
|
|
bool Replaying(void) const;
|
|
///< Returns true if we are currently replaying.
|
|
bool Transferring(void) const;
|
|
///< Returns true if we are currently in Transfer Mode.
|
|
void StopReplay(void);
|
|
///< Stops the current replay session (if any).
|
|
bool AttachPlayer(cPlayer *Player);
|
|
///< Attaches the given player to this device.
|
|
void Detach(cPlayer *Player);
|
|
///< Detaches the given player from this device.
|
|
|
|
// Receiver facilities
|
|
|
|
private:
|
|
mutable cMutex mutexReceiver;
|
|
cReceiver *receiver[MAXRECEIVERS];
|
|
public:
|
|
int Priority(void) const;
|
|
///< Returns the priority of the current receiving session (-MAXPRIORITY..MAXPRIORITY),
|
|
///< or IDLEPRIORITY if no receiver is currently active.
|
|
protected:
|
|
virtual bool OpenDvr(void);
|
|
///< Opens the DVR of this device and prepares it to deliver a Transport
|
|
///< Stream for use in a cReceiver.
|
|
virtual void CloseDvr(void);
|
|
///< Shuts down the DVR.
|
|
virtual bool GetTSPacket(uchar *&Data);
|
|
///< Gets exactly one TS packet from the DVR of this device and returns
|
|
///< a pointer to it in Data. Only the first 188 bytes (TS_SIZE) Data
|
|
///< points to are valid and may be accessed. If there is currently no
|
|
///< new data available, Data will be set to NULL. The function returns
|
|
///< false in case of a non recoverable error, otherwise it returns true,
|
|
///< even if Data is NULL.
|
|
public:
|
|
bool Receiving(bool Dummy = false) const;
|
|
///< Returns true if we are currently receiving. The parameter has no meaning (for backwards compatibility only).
|
|
bool AttachReceiver(cReceiver *Receiver);
|
|
///< Attaches the given receiver to this device.
|
|
void Detach(cReceiver *Receiver);
|
|
///< Detaches the given receiver from this device.
|
|
void DetachAll(int Pid);
|
|
///< Detaches all receivers from this device for this pid.
|
|
virtual void DetachAllReceivers(void);
|
|
///< Detaches all receivers from this device.
|
|
};
|
|
|
|
/// Derived cDevice classes that can receive channels will have to provide
|
|
/// Transport Stream (TS) packets one at a time. cTSBuffer implements a
|
|
/// simple buffer that allows the device to read a larger amount of data
|
|
/// from the driver with each call to Read(), thus avoiding the overhead
|
|
/// of getting each TS packet separately from the driver. It also makes
|
|
/// sure the returned data points to a TS packet and automatically
|
|
/// re-synchronizes after broken packets.
|
|
|
|
class cTSBuffer : public cThread {
|
|
private:
|
|
int f;
|
|
int cardIndex;
|
|
bool delivered;
|
|
cRingBufferLinear *ringBuffer;
|
|
virtual void Action(void);
|
|
public:
|
|
cTSBuffer(int File, int Size, int CardIndex);
|
|
virtual ~cTSBuffer();
|
|
uchar *Get(int *Available = NULL);
|
|
///< Returns a pointer to the first TS packet in the buffer. If Available is given,
|
|
///< it will return the total number of consecutive bytes pointed to in the buffer.
|
|
///< It is guaranteed that the returned pointer points to a TS_SYNC_BYTE and that
|
|
///< there are at least TS_SIZE bytes in the buffer. Otherwise NULL will be
|
|
///< returned and the value in Available (if given) is undefined.
|
|
///< Each call to Get() returns a pointer to the next TS packet in the buffer.
|
|
void Skip(int Count);
|
|
///< If after a call to Get() more or less than TS_SIZE of the available data
|
|
///< has been processed, a call to Skip() with the number of processed bytes
|
|
///< will disable the automatic incrementing of the data pointer as described
|
|
///< in Get() and skip the given number of bytes instead. Count may be 0 if the
|
|
///< caller wants the previous TS packet to be delivered again in the next call
|
|
///< to Get().
|
|
};
|
|
|
|
#endif //__DEVICE_H
|