2002-06-16 12:57:31 +02:00
|
|
|
/*
|
|
|
|
* device.h: The basic device interface
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2006-01-08 10:13:38 +01:00
|
|
|
* $Id: device.h 1.70 2006/01/08 10:10:26 kls Exp $
|
2002-06-16 12:57:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DEVICE_H
|
|
|
|
#define __DEVICE_H
|
|
|
|
|
2005-09-04 14:48:39 +02:00
|
|
|
#include "channels.h"
|
2003-01-06 14:44:27 +01:00
|
|
|
#include "ci.h"
|
2003-12-22 13:29:24 +01:00
|
|
|
#include "eit.h"
|
|
|
|
#include "filter.h"
|
2004-01-11 15:54:37 +01:00
|
|
|
#include "nit.h"
|
2003-12-22 13:29:24 +01:00
|
|
|
#include "pat.h"
|
2004-10-16 09:36:28 +02:00
|
|
|
#include "ringbuffer.h"
|
2004-01-04 12:30:00 +01:00
|
|
|
#include "sdt.h"
|
2003-12-22 13:29:24 +01:00
|
|
|
#include "sections.h"
|
2005-02-20 12:01:05 +01:00
|
|
|
#include "spu.h"
|
2002-06-16 12:57:31 +02:00
|
|
|
#include "thread.h"
|
2002-08-04 14:57:29 +02:00
|
|
|
#include "tools.h"
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2002-08-04 14:57:29 +02:00
|
|
|
#define MAXDEVICES 16 // the maximum number of devices in the system
|
2005-01-16 14:40:47 +01:00
|
|
|
#define MAXPIDHANDLES 64 // the maximum number of different PIDs per device
|
2002-08-04 14:57:29 +02:00
|
|
|
#define MAXRECEIVERS 16 // the maximum number of receivers per device
|
2002-06-16 12:57:31 +02:00
|
|
|
#define MAXVOLUME 255
|
|
|
|
#define VOLUMEDELTA 5 // used to increase/decrease the volume
|
|
|
|
|
2002-08-04 14:57:29 +02:00
|
|
|
#define TS_SIZE 188
|
|
|
|
#define TS_SYNC_BYTE 0x47
|
|
|
|
#define PID_MASK_HI 0x1F
|
|
|
|
|
2002-09-04 17:26:02 +02:00
|
|
|
enum eSetChannelResult { scrOk, scrNotAvailable, scrNoTransfer, scrFailed };
|
2002-08-04 14:57:29 +02:00
|
|
|
|
2002-09-08 15:04:33 +02:00
|
|
|
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)
|
2004-05-23 10:12:44 +02:00
|
|
|
pmVideoOnly, // video only from player, audio from decoder
|
2002-08-15 11:16:34 +02:00
|
|
|
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.
|
|
|
|
};
|
|
|
|
|
2003-08-15 13:05:50 +02:00
|
|
|
enum eVideoSystem { vsPAL,
|
|
|
|
vsNTSC
|
|
|
|
};
|
|
|
|
|
2005-02-20 12:01:05 +01:00
|
|
|
enum eVideoDisplayFormat { vdfPanAndScan,
|
|
|
|
vdfLetterBox,
|
|
|
|
vdfCenterCutOut
|
|
|
|
};
|
|
|
|
|
2004-12-17 14:55:49 +01:00
|
|
|
enum eTrackType { ttNone,
|
|
|
|
ttAudio,
|
|
|
|
ttAudioFirst = ttAudio,
|
2005-01-16 14:40:47 +01:00
|
|
|
ttAudioLast = ttAudioFirst + 31, // MAXAPIDS - 1
|
2004-12-17 14:55:49 +01:00
|
|
|
ttDolby,
|
|
|
|
ttDolbyFirst = ttDolby,
|
2005-02-20 14:07:52 +01:00
|
|
|
ttDolbyLast = ttDolbyFirst + 15, // MAXDPIDS - 1
|
2004-12-17 14:55:49 +01:00
|
|
|
/* future...
|
|
|
|
ttSubtitle,
|
|
|
|
ttSubtitleFirst = ttSubtitle,
|
2005-02-20 14:07:52 +01:00
|
|
|
ttSubtitleLast = ttSubtitleFirst + 7, // MAXSPIDS - 1
|
2004-12-17 14:55:49 +01:00
|
|
|
*/
|
|
|
|
ttMaxTrackTypes
|
|
|
|
};
|
|
|
|
|
|
|
|
#define IS_AUDIO_TRACK(t) (ttAudioFirst <= (t) && (t) <= ttAudioLast)
|
|
|
|
#define IS_DOLBY_TRACK(t) (ttDolbyFirst <= (t) && (t) <= ttDolbyLast)
|
|
|
|
|
|
|
|
struct tTrackId {
|
2005-09-04 14:48:39 +02:00
|
|
|
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"
|
2004-12-17 14:55:49 +01:00
|
|
|
};
|
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
class cPlayer;
|
|
|
|
class cReceiver;
|
2004-12-17 14:55:49 +01:00
|
|
|
class cPesAssembler;
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2002-12-15 15:36:02 +01:00
|
|
|
/// The cDevice class is the base from which actual devices can be derived.
|
|
|
|
|
2002-09-21 09:14:56 +02:00
|
|
|
class cDevice : public cThread {
|
2002-06-16 12:57:31 +02:00
|
|
|
private:
|
|
|
|
static int numDevices;
|
|
|
|
static int useDevice;
|
|
|
|
static cDevice *device[MAXDEVICES];
|
|
|
|
static cDevice *primaryDevice;
|
|
|
|
public:
|
|
|
|
static int NumDevices(void) { return numDevices; }
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the total number of devices.
|
2005-08-21 08:56:49 +02:00
|
|
|
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.
|
|
|
|
///< \return True if all devices have become ready within the given
|
|
|
|
///< timeout.
|
2002-06-16 12:57:31 +02:00
|
|
|
static void SetUseDevice(int n);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the 'useDevice' flag of the given device.
|
|
|
|
///< If this function is not called before initializing, all devices
|
|
|
|
///< will be used.
|
2002-08-04 14:57:29 +02:00
|
|
|
static bool UseDevice(int n) { return useDevice == 0 || (useDevice & (1 << n)) != 0; }
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Tells whether the device with the given card index shall be used in
|
|
|
|
///< this instance of VDR.
|
2002-06-16 12:57:31 +02:00
|
|
|
static bool SetPrimaryDevice(int n);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the primary device to 'n'.
|
|
|
|
///< \param n must be in the range 1...numDevices.
|
|
|
|
///< \return true if this was possible.
|
2002-06-16 12:57:31 +02:00
|
|
|
static cDevice *PrimaryDevice(void) { return primaryDevice; }
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the primary device.
|
2003-05-11 09:01:51 +02:00
|
|
|
static cDevice *ActualDevice(void);
|
|
|
|
///< Returns the actual receiving device in case of Transfer Mode, or the
|
|
|
|
///< primary device otherwise.
|
2002-09-04 17:26:02 +02:00
|
|
|
static cDevice *GetDevice(int Index);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Gets the device with the given Index.
|
|
|
|
///< \param Index must be in the range 0..numDevices-1.
|
|
|
|
///< \return A pointer to the device, or NULL if the Index was invalid.
|
2002-09-06 14:10:17 +02:00
|
|
|
static cDevice *GetDevice(const cChannel *Channel, int Priority = -1, bool *NeedsDetachReceivers = NULL);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns a device that is able to receive the given Channel at the
|
|
|
|
///< given Priority.
|
|
|
|
///< See ProvidesChannel() for more information on how
|
|
|
|
///< priorities are handled, and the meaning of NeedsDetachReceivers.
|
2002-06-16 12:57:31 +02:00
|
|
|
static void Shutdown(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Closes down all devices.
|
|
|
|
///< Must be called at the end of the program.
|
2002-06-16 12:57:31 +02:00
|
|
|
private:
|
2002-08-04 14:57:29 +02:00
|
|
|
static int nextCardIndex;
|
2002-06-16 12:57:31 +02:00
|
|
|
int cardIndex;
|
2002-08-04 14:57:29 +02:00
|
|
|
protected:
|
|
|
|
cDevice(void);
|
2002-06-16 12:57:31 +02:00
|
|
|
virtual ~cDevice();
|
2005-08-21 08:56:49 +02:00
|
|
|
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()).
|
2002-08-04 14:57:29 +02:00
|
|
|
static int NextCardIndex(int n = 0);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void MakePrimaryDevice(bool On);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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.
|
2002-08-04 14:57:29 +02:00
|
|
|
public:
|
2002-07-28 11:29:32 +02:00
|
|
|
bool IsPrimaryDevice(void) const { return this == primaryDevice; }
|
2002-06-16 12:57:31 +02:00
|
|
|
int CardIndex(void) const { return cardIndex; }
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the card index of this device (0 ... MAXDEVICES - 1).
|
2002-10-07 16:21:46 +02:00
|
|
|
int DeviceNumber(void) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the number of this device (0 ... MAXDEVICES - 1).
|
2006-01-07 15:16:09 +01:00
|
|
|
virtual int ProvidesCa(const cChannel *Channel) const;
|
|
|
|
///< Checks whether this device provides the conditional access
|
|
|
|
///< facilities to decrypt the given Channel.
|
|
|
|
///< Returns 0 if the Channel can't be decrypted, 1 if this is a
|
|
|
|
///< Free To Air channel or only exactly this device can decrypt it,
|
|
|
|
///< and > 1 if this device can decrypt the Channel.
|
|
|
|
///< If the result is greater than 1 and the device has more than one
|
|
|
|
///< CAM, the value will be increased by the number of CAMs, which
|
|
|
|
///< allows to select the device with the smallest number of CAMs
|
|
|
|
///< in order to preserve resources for other recordings.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual bool HasDecoder(void) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Tells whether this device has an MPEG decoder.
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2004-05-16 10:35:36 +02:00
|
|
|
// SPU facilities
|
2002-08-25 09:36:09 +02:00
|
|
|
|
|
|
|
public:
|
2002-09-08 14:17:51 +02:00
|
|
|
virtual cSpuDecoder *GetSpuDecoder(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns a pointer to the device's SPU decoder (or NULL, if this
|
|
|
|
///< device doesn't have an SPU decoder).
|
2002-08-25 09:36:09 +02:00
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
// Channel facilities
|
|
|
|
|
2002-08-04 14:57:29 +02:00
|
|
|
protected:
|
2002-09-08 11:46:53 +02:00
|
|
|
static int currentChannel;
|
2002-06-16 12:57:31 +02:00
|
|
|
public:
|
2002-10-06 10:25:42 +02:00
|
|
|
virtual bool ProvidesSource(int Source) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns true if this device can provide the given source.
|
2004-01-04 12:30:00 +01:00
|
|
|
virtual bool ProvidesTransponder(const cChannel *Channel) const;
|
|
|
|
///< XXX -> PLUGINS.html!
|
2005-06-12 14:09:45 +02:00
|
|
|
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.
|
2002-09-29 13:40:45 +02:00
|
|
|
virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1, bool *NeedsDetachReceivers = NULL) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns true if this device can provide the given channel.
|
|
|
|
///< In case the device has cReceivers attached to it or it is the primary
|
|
|
|
///< device, Priority is used to decide whether the caller's request can
|
|
|
|
///< be honored.
|
|
|
|
///< The special Priority value -1 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.
|
2005-11-05 15:48:05 +01:00
|
|
|
virtual bool MaySwitchTransponder(void);
|
|
|
|
///< Returns true if it is ok to switch the transponder on this device,
|
|
|
|
///< without disturbing any other activities.
|
2002-09-04 17:26:02 +02:00
|
|
|
bool SwitchChannel(const cChannel *Channel, bool LiveView);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Switches the device to the given Channel, initiating transfer mode
|
|
|
|
///< if necessary.
|
2002-09-08 11:46:53 +02:00
|
|
|
static bool SwitchChannel(int Direction);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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).
|
2002-09-04 17:26:02 +02:00
|
|
|
private:
|
|
|
|
eSetChannelResult SetChannel(const cChannel *Channel, bool LiveView);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the device to the given channel (general setup).
|
2002-09-04 17:26:02 +02:00
|
|
|
protected:
|
|
|
|
virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the device to the given channel (actual physical setup).
|
2002-09-04 17:26:02 +02:00
|
|
|
public:
|
2002-09-08 11:46:53 +02:00
|
|
|
static int CurrentChannel(void) { return primaryDevice ? currentChannel : 0; }
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the number of the current channel on the primary device.
|
2004-10-30 15:10:50 +02:00
|
|
|
virtual bool HasLock(int TimeoutMs = 0);//XXX PLUGINS.html
|
2004-01-04 12:30:00 +01:00
|
|
|
///< 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.
|
2004-10-30 15:10:50 +02:00
|
|
|
///< If TimeoutMs is not zero, waits for the given number of milliseconds
|
|
|
|
///< before returning false.
|
2003-05-03 13:42:37 +02:00
|
|
|
virtual bool HasProgramme(void);
|
|
|
|
///< Returns true if the device is currently showing any programme to
|
|
|
|
///< the user, either through replaying or live.
|
2002-06-16 12:57:31 +02:00
|
|
|
|
|
|
|
// PID handle facilities
|
|
|
|
|
|
|
|
private:
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void Action(void);
|
|
|
|
protected:
|
2003-04-26 11:58:54 +02:00
|
|
|
enum ePidType { ptAudio, ptVideo, ptPcr, ptTeletext, ptDolby, ptOther };
|
2002-06-16 12:57:31 +02:00
|
|
|
class cPidHandle {
|
|
|
|
public:
|
|
|
|
int pid;
|
2002-08-04 14:57:29 +02:00
|
|
|
int handle;
|
2002-06-16 12:57:31 +02:00
|
|
|
int used;
|
2002-08-04 14:57:29 +02:00
|
|
|
cPidHandle(void) { pid = used = 0; handle = -1; }
|
2002-06-16 12:57:31 +02:00
|
|
|
};
|
|
|
|
cPidHandle pidHandles[MAXPIDHANDLES];
|
2002-09-29 13:40:45 +02:00
|
|
|
bool HasPid(int Pid) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns true if this device is currently receiving the given PID.
|
2002-06-16 12:57:31 +02:00
|
|
|
bool AddPid(int Pid, ePidType PidType = ptOther);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Adds a PID to the set of PIDs this device shall receive.
|
2003-05-02 09:24:31 +02:00
|
|
|
void DelPid(int Pid, ePidType PidType = ptOther);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Deletes a PID from the set of PIDs this device shall receive.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual bool SetPid(cPidHandle *Handle, int Type, bool On);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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).
|
2005-09-10 11:54:02 +02:00
|
|
|
///< Handle->used indicates how many receivers are using this PID.
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Type indicates some special types of PIDs, which the device may
|
|
|
|
///< need to set in a specific way.
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
// Section filter facilities
|
|
|
|
|
|
|
|
private:
|
|
|
|
cSectionHandler *sectionHandler;
|
|
|
|
cEitFilter *eitFilter;
|
|
|
|
cPatFilter *patFilter;
|
2004-01-04 12:30:00 +01:00
|
|
|
cSdtFilter *sdtFilter;
|
2004-01-11 15:54:37 +01:00
|
|
|
cNitFilter *nitFilter;
|
2003-12-22 13:29:24 +01:00
|
|
|
protected:
|
|
|
|
void StartSectionHandler(void);
|
|
|
|
///< A derived device that provides section data must call
|
|
|
|
///< this function to actually set up 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.
|
|
|
|
void AttachFilter(cFilter *Filter);
|
|
|
|
///< Attaches the given filter to this device.
|
|
|
|
void Detach(cFilter *Filter);
|
|
|
|
///< Detaches the given filter from this device.
|
|
|
|
|
2003-01-06 14:44:27 +01:00
|
|
|
// Common Interface facilities:
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cCiHandler *ciHandler;
|
|
|
|
public:
|
|
|
|
cCiHandler *CiHandler(void) { return ciHandler; }
|
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
// Image Grab facilities
|
|
|
|
|
|
|
|
public:
|
2005-12-29 14:51:59 +01:00
|
|
|
virtual uchar *GrabImage(int &Size, bool Jpeg = true, int Quality = -1, int SizeX = -1, int SizeY = -1);
|
|
|
|
///< Grabs the currently visible screen image.
|
|
|
|
///< \param Size The size of the returned data block.
|
2002-12-15 15:36:02 +01:00
|
|
|
///< \param Jpeg If true will write a JPEG file. Otherwise a PNM file will be written.
|
|
|
|
///< \param Quality 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.
|
|
|
|
///< \param SizeX The number of horizontal pixels in the frame (default is the current screen width).
|
|
|
|
///< \param SizeY The number of vertical pixels in the frame (default is the current screen height).
|
2005-12-29 14:51:59 +01:00
|
|
|
///< \return 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.
|
|
|
|
///< \return 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.
|
2002-06-16 12:57:31 +02:00
|
|
|
|
|
|
|
// Video format facilities
|
|
|
|
|
|
|
|
public:
|
2005-02-20 12:01:05 +01:00
|
|
|
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!
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void SetVideoFormat(bool VideoFormat16_9);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the output video format to either 16:9 or 4:3 (only useful
|
|
|
|
///< if this device has an MPEG decoder).
|
2003-08-15 13:05:50 +02:00
|
|
|
virtual eVideoSystem GetVideoSystem(void);
|
|
|
|
///< Returns the video system of the currently displayed material
|
|
|
|
///< (default is PAL).
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2004-12-17 14:55:49 +01:00
|
|
|
// Track facilities
|
|
|
|
|
|
|
|
private:
|
|
|
|
tTrackId availableTracks[ttMaxTrackTypes];
|
|
|
|
eTrackType currentAudioTrack;
|
2006-01-08 10:13:38 +01:00
|
|
|
cMutex mutexCurrentAudioTrack;
|
2005-02-06 11:33:13 +01:00
|
|
|
int currentAudioTrackMissingCount;
|
2005-01-23 14:10:15 +01:00
|
|
|
bool pre_1_3_19_PrivateStream;
|
2004-12-17 14:55:49 +01:00
|
|
|
protected:
|
|
|
|
virtual void SetAudioTrackDevice(eTrackType Type);
|
|
|
|
///< Sets the current audio track to the given value.
|
|
|
|
public:
|
2005-01-08 10:15:30 +01:00
|
|
|
void ClrAvailableTracks(bool DescriptionsOnly = false);
|
2005-02-06 11:44:56 +01:00
|
|
|
bool SetAvailableTrack(eTrackType Type, int Index, uint16_t Id, const char *Language = NULL, const char *Description = NULL);
|
2004-12-17 14:55:49 +01:00
|
|
|
///< 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.
|
2005-02-06 11:44:56 +01:00
|
|
|
///< If Id is 0 any existing id will be left untouched and only the
|
2005-01-02 15:11:44 +01:00
|
|
|
///< given Language and Description will be set.
|
2004-12-17 14:55:49 +01:00
|
|
|
///< \return 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 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.
|
|
|
|
eTrackType GetCurrentAudioTrack(void) { return currentAudioTrack; }
|
|
|
|
bool SetCurrentAudioTrack(eTrackType Type);
|
|
|
|
///< Sets the current audio track to the given Type.
|
|
|
|
///< \return Returns true if Type is a valid audio track, false otherwise.
|
2005-02-06 11:33:13 +01:00
|
|
|
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.
|
2004-12-17 14:55:49 +01:00
|
|
|
|
2002-10-12 14:29:46 +02:00
|
|
|
// Audio facilities
|
2002-06-16 12:57:31 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool mute;
|
|
|
|
int volume;
|
2002-08-04 14:57:29 +02:00
|
|
|
protected:
|
2005-01-06 13:50:17 +01:00
|
|
|
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).
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void SetVolumeDevice(int Volume);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the audio volume on this device (Volume = 0...255).
|
2005-01-06 13:50:17 +01:00
|
|
|
virtual void SetDigitalAudioDevice(bool On);
|
2004-12-17 14:55:49 +01:00
|
|
|
///< Tells the actual device that digital audio output shall be switched
|
|
|
|
///< on or off.
|
2002-06-16 12:57:31 +02:00
|
|
|
public:
|
2002-09-29 13:40:45 +02:00
|
|
|
bool IsMute(void) const { return mute; }
|
2002-06-16 12:57:31 +02:00
|
|
|
bool ToggleMute(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Turns the volume off or on and returns the new mute state.
|
2005-01-06 13:50:17 +01:00
|
|
|
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.
|
2002-06-16 12:57:31 +02:00
|
|
|
void SetVolume(int Volume, bool Absolute = false);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the volume to the given value, either absolutely or relative to
|
|
|
|
///< the current volume.
|
2002-06-16 12:57:31 +02:00
|
|
|
static int CurrentVolume(void) { return primaryDevice ? primaryDevice->volume : 0; }//XXX???
|
|
|
|
|
|
|
|
// Player facilities
|
|
|
|
|
|
|
|
private:
|
|
|
|
cPlayer *player;
|
2004-12-17 14:55:49 +01:00
|
|
|
cPesAssembler *pesAssembler;
|
2002-08-04 14:57:29 +02:00
|
|
|
protected:
|
2002-10-26 11:51:37 +02:00
|
|
|
virtual bool CanReplay(void) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns true if this device can currently start a replay session.
|
2002-08-15 11:16:34 +02:00
|
|
|
virtual bool SetPlayMode(ePlayMode PlayMode);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the device into the given play mode.
|
|
|
|
///< \return true if the operation was successful.
|
2004-12-17 14:55:49 +01:00
|
|
|
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' to EAGAIN).
|
|
|
|
///< \return Returns the number of bytes actually taken from Data, or -1
|
|
|
|
///< in case of an error.
|
|
|
|
virtual int PlayAudio(const uchar *Data, int Length);
|
|
|
|
///< Plays the given data block as audio.
|
|
|
|
///< Data points to exactly one complete PES packet of the given Length.
|
|
|
|
///< PlayAudio() shall process the packet either as a whole (returning
|
|
|
|
///< Length) or not at all (returning 0 or -1 and setting 'errno' to EAGAIN).
|
|
|
|
///< \return 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.
|
2002-06-16 12:57:31 +02:00
|
|
|
public:
|
2003-11-07 14:16:25 +01:00
|
|
|
virtual int64_t GetSTC(void);
|
|
|
|
///< Gets the current System Time Counter, which can be used to
|
|
|
|
///< synchronize audio and video. If this device is unable to
|
|
|
|
///< provide the STC, -1 will be returned.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void TrickSpeed(int Speed);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the device into a mode where replay is done slower.
|
|
|
|
///< Every single frame shall then be displayed the given number of
|
|
|
|
///< times.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void Clear(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void Play(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Sets the device into play mode (after a previous trick
|
|
|
|
///< mode).
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void Freeze(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Puts the device into "freeze frame" mode.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void Mute(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Turns off audio while replaying.
|
|
|
|
///< A derived class must call the base class function to make sure
|
|
|
|
///< all registered cAudio objects are notified.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void StillPicture(const uchar *Data, int Length);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Displays the given I-frame as a still picture.
|
2002-08-16 09:22:29 +02:00
|
|
|
virtual bool Poll(cPoller &Poller, int TimeoutMs = 0);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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
|
2005-07-30 09:32:51 +02:00
|
|
|
///< of milleseconds before returning in case it can't accept any data.
|
2004-06-19 08:58:14 +02:00
|
|
|
virtual bool Flush(int TimeoutMs = 0);
|
|
|
|
///< Returns true if the device's output buffers are empty, i. e. any
|
|
|
|
///< data which was bufferd 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..
|
2004-12-17 14:55:49 +01:00
|
|
|
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.
|
2002-09-29 13:40:45 +02:00
|
|
|
bool Replaying(void) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns true if we are currently replaying.
|
2002-06-16 12:57:31 +02:00
|
|
|
void StopReplay(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Stops the current replay session (if any).
|
2002-06-22 13:45:53 +02:00
|
|
|
bool AttachPlayer(cPlayer *Player);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Attaches the given player to this device.
|
2002-06-16 12:57:31 +02:00
|
|
|
void Detach(cPlayer *Player);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Detaches the given player from this device.
|
2002-06-16 12:57:31 +02:00
|
|
|
|
|
|
|
// Receiver facilities
|
|
|
|
|
|
|
|
private:
|
2004-12-24 15:37:11 +01:00
|
|
|
cMutex mutexReceiver;
|
2002-06-16 12:57:31 +02:00
|
|
|
cReceiver *receiver[MAXRECEIVERS];
|
2002-09-04 17:26:02 +02:00
|
|
|
protected:
|
2002-09-29 13:40:45 +02:00
|
|
|
int Priority(void) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the priority of the current receiving session (0..MAXPRIORITY),
|
|
|
|
///< or -1 if no receiver is currently active. The primary device will
|
|
|
|
///< always return at least Setup.PrimaryLimit-1.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual bool OpenDvr(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Opens the DVR of this device and prepares it to deliver a Transport
|
|
|
|
///< Stream for use in a cReceiver.
|
2002-08-04 14:57:29 +02:00
|
|
|
virtual void CloseDvr(void);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Shuts down the DVR.
|
2002-09-08 09:03:10 +02:00
|
|
|
virtual bool GetTSPacket(uchar *&Data);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< 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.
|
2002-06-16 12:57:31 +02:00
|
|
|
public:
|
2002-10-26 09:43:11 +02:00
|
|
|
int Ca(void) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns the ca of the current receiving session(s).
|
2002-11-01 11:11:20 +01:00
|
|
|
bool Receiving(bool CheckAny = false) const;
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Returns true if we are currently receiving.
|
2002-06-22 13:45:53 +02:00
|
|
|
bool AttachReceiver(cReceiver *Receiver);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Attaches the given receiver to this device.
|
2002-06-16 12:57:31 +02:00
|
|
|
void Detach(cReceiver *Receiver);
|
2002-12-15 15:36:02 +01:00
|
|
|
///< Detaches the given receiver from this device.
|
2005-06-05 13:37:37 +02:00
|
|
|
void DetachAll(int Pid);
|
|
|
|
///< Detaches all receivers from this device for this pid.
|
2006-01-06 13:55:57 +01:00
|
|
|
void DetachAllReceivers(void);
|
|
|
|
///< Detaches all receivers from this device.
|
2002-06-16 12:57:31 +02:00
|
|
|
};
|
|
|
|
|
2002-12-15 15:36:02 +01:00
|
|
|
/// 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
|
2004-02-14 11:29:57 +01:00
|
|
|
/// re-synchronizes after broken packets.
|
2002-09-08 09:03:10 +02:00
|
|
|
|
2004-10-16 09:36:28 +02:00
|
|
|
class cTSBuffer : public cThread {
|
2002-09-08 09:03:10 +02:00
|
|
|
private:
|
|
|
|
int f;
|
|
|
|
int cardIndex;
|
2004-10-16 09:36:28 +02:00
|
|
|
bool delivered;
|
|
|
|
cRingBufferLinear *ringBuffer;
|
|
|
|
virtual void Action(void);
|
2002-09-08 09:03:10 +02:00
|
|
|
public:
|
|
|
|
cTSBuffer(int File, int Size, int CardIndex);
|
|
|
|
~cTSBuffer();
|
|
|
|
uchar *Get(void);
|
|
|
|
};
|
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
#endif //__DEVICE_H
|