mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
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;
|
|
}
|