mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
VDR developer version 1.7.30 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.30.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.29-1.7.30.diff MD5 checksums: c6d75f2962bc3e22d9313c0ee4fa113a vdr-1.7.30.tar.bz2 a63098efcc58bc697d6b890097d9c370 vdr-1.7.29-1.7.30.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. The default skin "LCARS" displays the signal strengths and qualities of all devices in its main menu. For devices that have an stb0899 frontend chip (like the TT-budget S2-3200) retrieving this information from the driver is rather slow, which results in a sluggish response to user input in the main menu. To speed this up you may want to apply the patches from ftp://ftp.tvdr.de/vdr/Developer/Driver-Patches to the LinuxDVB driver source. From the HISTORY file: - Fixed sorting recordings in the top level video directory. - Fixed handling control characters in SI data in case of UTF-8 encoded strings (thanks to Mehdi Karamnejad for reporting a problem with garbled UTF-8 EPG data and helping to debug it). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - When checking whether a video directory is empty, file names that start with a dot ('.') are now ignored and will be implicitly removed if the directory contains no other files. This fixes the leftover ".sort" files that were introduced in version 1.7.29. - Added IsUpdate() to the EPG handler interface (thanks to Jörg Wendel). - Fixed detecting transfer mode on full featured DVB cards (thanks to Stefan Huelswitt for reporting a problem with updating CA descriptors in such cases). - Fixed a race condition when zapping in transfer mode (reported by Reinhard Nissl). This involves a slight change in the semantics of the cReceiver::Activate() function, which is now called with 'false' after the receiver has been detached from the device. - The new function cDevice::ReadFilter() can be used by devices to implement their own way of retrieving section filter data (thanks to Deti Fliegl). - The new function cDevice::HasInternalCam() can be implemented by devices that provide encrypted channels in an already decrypted form, without requiring explicit handling of a CAM (thanks to Tobias Grimm). - VDR can now be built according to the FHS ("File system Hierarchy Standard") by activating the line #USEFHS = 1 in a copy of the file Make.config.template (thanks to Dennis Bendlin, as well as Christopher Reimer and Udo Richter for contributing to the patch). - By default (without FHS support) the config directory is now set to the value given in the -v option if only -v and no -c is given. - Fixed a long delay at the end when replaying a recording that has stopped recording less than an hour ago (typically time shift mode or a freshly edited recording). - Fixed getting the file size and number of frames of ongoing recordings (only the timestamp of the recording's directory was checked, while it should have been that of the index file). - Fixed sluggish response when manipulating editing marks while a cutting thread is running (reported by Torsten Lang). - The new setup options "OSD/Color key [0123]" can be used to adjust the sequence of the color buttons displayed in the menus to that of the color keys on your remote control (based on a patch from Oliver Schinagl). Authors of plugins that implement skins may want to adapt their SetButtons() function in order to make use of this new feature. See, for instance, the function cSkinClassicDisplayMenu::SetButtons() in skinclassic.c for details.
77 lines
3.9 KiB
C++
77 lines
3.9 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.9 2012/09/02 09:27:20 kls Exp $
|
|
*/
|
|
|
|
#ifndef __RECEIVER_H
|
|
#define __RECEIVER_H
|
|
|
|
#include "device.h"
|
|
|
|
#define MAXRECEIVEPIDS 64 // the maximum number of PIDs per receiver
|
|
|
|
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) and right after it gets 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:
|
|
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 any 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
|