mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Original announce message: VDR developer version 1.7.27 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.27.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.26-1.7.27.diff MD5 checksums: bfeaa79a9e55144bca2b69139c45f1bb vdr-1.7.27.tar.bz2 b23344be51d3e2c2d96cc2dd4e8e564e vdr-1.7.26-1.7.27.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: - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Changed the Green button in the "Edit timer" menu from "Once" to "Single" (suggested by Rolf Ahrenberg). - Fixed some typos in HISTORY and CONTRIBUTORS (thanks to Ville Skyttä). - The channel name column in the "What's on now/next" menu now adjusts its width to display the full short name of each channel (suggested by Dominic Evans). - Dropped the meanwhile obsolete script 'i18n-to-gettext'. - Removed the obsolete function cPlugin::RegisterI18n(). - Removed the obsolete typedef tI18nPhrase. - Adapted menu column widths of 'skincurses' to the wider HD OSD sizes. - Deactivated definition of __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS (recording.h) and LEGACY_CRECEIVER (receiver.h) to trigger an error for any plugin that still uses the respective code. You can reactivate these to quickly make your plugin compile again, but beware that these code parts will be removed in one of the next versions. - Made the "overloaded-virtual" warning an error to detect hidden overloaded virtual functions (thanks to Anssi Hannula for pointing out -Werror=...). Plugin authors may want to change -Woverloaded-virtual to -Werror=overloaded-virtual in their Makefiles. - Updated the Estonian OSD texts (thanks to Arthur Konovalov). - Improved fast forwarding to the end of a timeshift recording. - The new function cDevice::DeviceName() returns a string identifying the name of the given device. - When toggling a timer between "Single" and "Repeating", the previous setting is now retained in case the user toggles back to the original value. - When estimating the remaining disk space (in hours), the average data rate of all existing recordings is now taken into account. If this value can't be determined, the previous value of 25.75 MB/min is taken. - No longer using GetFont() (which is not thread safe) in the 'osddemo' plugin. - No longer using GetFont() (which is not thread safe) in cSubtitleRegion::UpdateTextData(). - Fixed a memory leak in cSubtitleRegion::UpdateTextData(). - Moved setting LC_NUMERIC further up to make sure any floating point numbers use a decimal point (suggested by Tobias Grimm). - Added missing channel locking to cEIT. - Fixed reduced bpp support for DVB subtitles (thanks to Rolf Ahrenberg). - Updated the Italian OSD texts (thanks to Diego Pierotto). - Reverted some improvements to Make.config.template (thanks to Christian Ruppert). - Fixed handling IDLEPRIORITY in cDvbDevice::ProvidesChannel() (thanks to Frank Schmirler).
82 lines
4.2 KiB
C++
82 lines
4.2 KiB
C++
/*
|
|
* receiver.h: The basic receiver interface
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: receiver.h 2.6 2012/03/11 15:25:40 kls Exp $
|
|
*/
|
|
|
|
#ifndef __RECEIVER_H
|
|
#define __RECEIVER_H
|
|
|
|
#include "device.h"
|
|
|
|
#define MAXRECEIVEPIDS 64 // the maximum number of PIDs per receiver
|
|
|
|
//#define LEGACY_CRECEIVER // Code enclosed with this macro is deprecated and may be removed in a future version
|
|
|
|
class cReceiver {
|
|
friend class cDevice;
|
|
private:
|
|
cDevice *device;
|
|
tChannelID channelID;
|
|
int priority;
|
|
int pids[MAXRECEIVEPIDS];
|
|
int numPids;
|
|
bool WantsPid(int Pid);
|
|
protected:
|
|
void Detach(void);
|
|
virtual void Activate(bool On) {}
|
|
///< This function is called just before the cReceiver gets attached to
|
|
///< (On == true) or detached from (On == false) a cDevice. It can be used
|
|
///< to do things like starting/stopping a thread.
|
|
///< It is guaranteed that Receive() will not be called before Activate(true).
|
|
virtual void Receive(uchar *Data, int Length) = 0;
|
|
///< This function is called from the cDevice we are attached to, and
|
|
///< delivers one TS packet from the set of PIDs the cReceiver has requested.
|
|
///< The data packet must be accepted immediately, and the call must return
|
|
///< as soon as possible, without any unnecessary delay. Each TS packet
|
|
///< will be delivered only ONCE, so the cReceiver must make sure that
|
|
///< it will be able to buffer the data if necessary.
|
|
public:
|
|
#ifdef LEGACY_CRECEIVER
|
|
cReceiver(tChannelID ChannelID, int Priority, int Pid, const int *Pids1 = NULL, const int *Pids2 = NULL, const int *Pids3 = NULL);
|
|
#endif
|
|
cReceiver(const cChannel *Channel = NULL, int Priority = MINPRIORITY);
|
|
///< Creates a new receiver for the given Channel with the given Priority.
|
|
///< If Channel is not NULL, its pids are set by a call to SetPids().
|
|
///< Otherwise pids can be added to the receiver by separate calls to the AddPid[s]
|
|
///< functions.
|
|
///< The total number of PIDs added to a receiver must not exceed MAXRECEIVEPIDS.
|
|
///< Priority may be any value in the range MINPRIORITY...MAXPRIORITY. Negative values indicate
|
|
///< that this cReceiver may be detached at any time in favor of a timer recording
|
|
///< or live viewing (without blocking the cDevice it is attached to).
|
|
virtual ~cReceiver();
|
|
bool AddPid(int Pid);
|
|
///< Adds the given Pid to the list of PIDs of this receiver.
|
|
bool AddPids(const int *Pids);
|
|
///< Adds the given zero terminated list of Pids to the list of PIDs of this
|
|
///< receiver.
|
|
bool AddPids(int Pid1, int Pid2, int Pid3 = 0, int Pid4 = 0, int Pid5 = 0, int Pid6 = 0, int Pid7 = 0, int Pid8 = 0, int Pid9 = 0);
|
|
///< Adds the given Pids to the list of PIDs of this receiver.
|
|
bool SetPids(const cChannel *Channel);
|
|
///< Sets the PIDs of this receiver to those of the given Channel,
|
|
///< replacing and previously stored PIDs. If Channel is NULL, all
|
|
///< PIDs will be cleared. Parameters in the Setup may control whether
|
|
///< certain types of PIDs (like Dolby Digital, for instance) are
|
|
///< actually set. The Channel's ID is stored and can later be retrieved
|
|
///< through ChannelID(). The ChannelID is necessary to allow the device
|
|
///< that will be used for this receiver to detect and store whether the
|
|
///< channel can be decrypted in case this is an encrypted channel.
|
|
tChannelID ChannelID(void) { return channelID; }
|
|
bool IsAttached(void) { return device != NULL; }
|
|
///< Returns true if this receiver is (still) attached to a device.
|
|
///< A receiver may be automatically detached from its device in
|
|
///< case the device is needed otherwise, so code that uses a cReceiver
|
|
///< should repeatedly check whether it is still attached, and if
|
|
///< it isn't, delete it (or take any other appropriate measures).
|
|
};
|
|
|
|
#endif //__RECEIVER_H
|