mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Re-implemented handling of DVB-S2, which first appeared in version 1.5.14, but was revoked in version 1.5.15 in favor of making a stable version 1.6.0. VDR now requires the "multiproto" DVB driver, e.g. from http://jusst.de/hg/multiproto. Note that the channels.conf file now supports additional parameters, so you may want to make sure you have a backup of this file in case you need to go back to the previous version of VDR! - Fixed displaying transponder data when it is modified (thanks to Reinhard Nissl). - Fixed handling the counter in detection of pre 1.3.19 PS data (thanks to Reinhard Nissl). - Improved logging system time changes to avoid problems on slow systems under heavy load (suggested by Helmut Auer). - Now setting the thread name, so that it can be seen in 'top -H' (thanks to Rolf Ahrenberg). - Fixed initializing the timer's flags in the cTimer copy constructor (thanks to Andreas Mair). - Fixed setting the OSD level in the 'osddemo' example (thanks to Wolfgang Rohdewald). - Increased the time between checking the CAM status to 500ms to avoid problems with some CAMs (reported by Arthur Konovalov).
127 lines
3.7 KiB
C
127 lines
3.7 KiB
C
/*
|
|
* status.c: Status monitoring
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: status.c 2.0 2008/02/16 14:46:31 kls Exp $
|
|
*/
|
|
|
|
#include "status.h"
|
|
|
|
// --- cStatus ---------------------------------------------------------------
|
|
|
|
cList<cStatus> cStatus::statusMonitors;
|
|
|
|
cStatus::cStatus(void)
|
|
{
|
|
statusMonitors.Add(this);
|
|
}
|
|
|
|
cStatus::~cStatus()
|
|
{
|
|
statusMonitors.Del(this, false);
|
|
}
|
|
|
|
void cStatus::MsgTimerChange(const cTimer *Timer, eTimerChange Change)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->TimerChange(Timer, Change);
|
|
}
|
|
|
|
void cStatus::MsgChannelSwitch(const cDevice *Device, int ChannelNumber)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->ChannelSwitch(Device, ChannelNumber);
|
|
}
|
|
|
|
void cStatus::MsgRecording(const cDevice *Device, const char *Name, const char *FileName, bool On)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->Recording(Device, Name, FileName, On);
|
|
}
|
|
|
|
void cStatus::MsgReplaying(const cControl *Control, const char *Name, const char *FileName, bool On)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->Replaying(Control, Name, FileName, On);
|
|
}
|
|
|
|
void cStatus::MsgSetVolume(int Volume, bool Absolute)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->SetVolume(Volume, Absolute);
|
|
}
|
|
|
|
void cStatus::MsgSetAudioTrack(int Index, const char * const *Tracks)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->SetAudioTrack(Index, Tracks);
|
|
}
|
|
|
|
void cStatus::MsgSetAudioChannel(int AudioChannel)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->SetAudioChannel(AudioChannel);
|
|
}
|
|
|
|
void cStatus::MsgSetSubtitleTrack(int Index, const char * const *Tracks)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->SetSubtitleTrack(Index, Tracks);
|
|
}
|
|
|
|
void cStatus::MsgOsdClear(void)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdClear();
|
|
}
|
|
|
|
void cStatus::MsgOsdTitle(const char *Title)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdTitle(Title);
|
|
}
|
|
|
|
void cStatus::MsgOsdStatusMessage(const char *Message)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdStatusMessage(Message);
|
|
}
|
|
|
|
void cStatus::MsgOsdHelpKeys(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdHelpKeys(Red, Green, Yellow, Blue);
|
|
}
|
|
|
|
void cStatus::MsgOsdItem(const char *Text, int Index)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdItem(Text, Index);
|
|
}
|
|
|
|
void cStatus::MsgOsdCurrentItem(const char *Text)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdCurrentItem(Text);
|
|
}
|
|
|
|
void cStatus::MsgOsdTextItem(const char *Text, bool Scroll)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdTextItem(Text, Scroll);
|
|
}
|
|
|
|
void cStatus::MsgOsdChannel(const char *Text)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdChannel(Text);
|
|
}
|
|
|
|
void cStatus::MsgOsdProgramme(time_t PresentTime, const char *PresentTitle, const char *PresentSubtitle, time_t FollowingTime, const char *FollowingTitle, const char *FollowingSubtitle)
|
|
{
|
|
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
|
|
sm->OsdProgramme(PresentTime, PresentTitle, PresentSubtitle, FollowingTime, FollowingTitle, FollowingSubtitle);
|
|
}
|