Added cChannel::IsSourceType() to test if a channel's source is of a given type

This commit is contained in:
Klaus Schmidinger 2010-03-07 13:56:09 +01:00
parent 74d6d35bce
commit 1c922cbb54
3 changed files with 5 additions and 2 deletions

View File

@ -6402,3 +6402,4 @@ Video Disk Recorder Revision History
patch: 0 means timeshift recordings are not automatically deleted (the default behavior
as in previous versions), while 1 means to ask the user whether the recording shall be
deleted.
- Added cChannel::IsSourceType() to test if a channel's source is of a given type.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: channels.h 2.9 2010/03/06 11:54:17 kls Exp $
* $Id: channels.h 2.10 2010/03/07 13:47:13 kls Exp $
*/
#ifndef __CHANNELS_H
@ -176,6 +176,7 @@ public:
bool IsCable(void) const { return cSource::IsCable(source); }
bool IsSat(void) const { return cSource::IsSat(source); }
bool IsTerr(void) const { return cSource::IsTerr(source); }
bool IsSourceType(char Source) const { return cSource::IsType(source, Source); }
tChannelID GetChannelID(void) const { return tChannelID(source, nid, (nid || tid) ? tid : Transponder(), sid, rid); }
bool HasTimer(void) const;
int Modification(int Mask = CHANNELMOD_ALL);

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: sources.h 2.2 2010/03/06 11:53:54 kls Exp $
* $Id: sources.h 2.3 2010/03/07 13:53:11 kls Exp $
*/
#ifndef __SOURCES_H
@ -40,6 +40,7 @@ public:
static bool IsCable(int Code) { return (Code & st_Mask) == stCable; }
static bool IsSat(int Code) { return (Code & st_Mask) == stSat; }
static bool IsTerr(int Code) { return (Code & st_Mask) == stTerr; }
static bool IsType(int Code, char Source) { return int(Code & st_Mask) == (int(Source) << 24); }
};
class cSources : public cConfig<cSource> {