mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed handling empty strings in cSource::FromString(). - Assigned the source character 'I' to "IPTV" (suggested by Rolf Ahrenberg). - Assigned the source character 'V' to "Analog Video" (suggested by Lars Hanisch). This obsoletes the ANALOGTV patch. - Added support for ATSC devices (thanks to Alex Lasnier). This obsoletes the ATSC patch. - The "Source" item in the "Edit channel" menu now wraps around the list of sources (suggested by Halim Sahin). - Fixed editing channel parameters. - The new setup option "Recording/Delete timeshift recording" controls whether a timeshift recording is automatically deleted after viewing it. This obsoletes the DELTIMESHIFTREC patch. Note that the meaning of the values for this option is different from the DELTIMESHIFTREC 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. - Changed the polarization characters in cDvbSourceParam::GetOsdItem() to uppercase. - The full timer file name is now displayed if it ends with "TITLE" or "EPISODE" (pointed out by Udo Richter). - Fixed "attempt to drop wrong frame from ring buffer" when skipping +/- one minute during replay. - The new setup option "Folders in timer menu" controls whether the file names in the timer menu are shown with their full folder path.
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/*
|
|
* sourceparams.c: Source parameter handling
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: sourceparams.c 1.2 2010/03/06 11:13:39 kls Exp $
|
|
*/
|
|
|
|
#include "sourceparams.h"
|
|
#include "sources.h"
|
|
|
|
// --- cSourceParam ----------------------------------------------------------
|
|
|
|
cSourceParam::cSourceParam(char Source, const char *Description)
|
|
{
|
|
source = Source;
|
|
if ('A' <= source && source <= 'Z') {
|
|
if (SourceParams.Get(source)) {
|
|
esyslog("ERROR: source parameters for '%c' already defined", source);
|
|
return;
|
|
}
|
|
SourceParams.Add(this);
|
|
if (!strchr("ACST", Source)) // no, it's not "ATSC" ;-)
|
|
Sources.Add(new cSource(Source, Description));
|
|
dsyslog("registered source parameters for '%c - %s'", source, Description);
|
|
}
|
|
else
|
|
esyslog("ERROR: invalid source '%c'", source);
|
|
}
|
|
|
|
// --- cSourceParams ---------------------------------------------------------
|
|
|
|
cSourceParams SourceParams;
|
|
|
|
cSourceParam *cSourceParams::Get(char Source) const
|
|
{
|
|
for (cSourceParam *sp = First(); sp; sp = Next(sp)) {
|
|
if (sp->Source() == Source)
|
|
return sp;
|
|
}
|
|
return NULL;
|
|
}
|