Fixed displaying channels and recording status in the RCU's LED display when a recording is interrupted due to higher priority

This commit is contained in:
Klaus Schmidinger 2001-01-13 13:08:43 +01:00
parent 5dacc491e3
commit ba2c25d183
2 changed files with 20 additions and 20 deletions

View File

@ -338,3 +338,5 @@ Video Disk Recorder Revision History
- Fixed a problem with recordings that have a single quote character in their - Fixed a problem with recordings that have a single quote character in their
name (this is now mapped to 0x01). name (this is now mapped to 0x01).
- Changed the value for Diseqc to '0' in the default 'channels.conf'. - Changed the value for Diseqc to '0' in the default 'channels.conf'.
- Fixed displaying channels and recording status in the RCU's LED display when
a recording is interrupted due to higher priority.

38
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: menu.c 1.57 2001/01/07 15:59:56 kls Exp $ * $Id: menu.c 1.58 2001/01/13 13:07:43 kls Exp $
*/ */
#include "menu.h" #include "menu.h"
@ -1752,23 +1752,21 @@ cDisplayChannel::~cDisplayChannel()
void cDisplayChannel::DisplayChannel(const cChannel *Channel) void cDisplayChannel::DisplayChannel(const cChannel *Channel)
{ {
if (!Interface->Recording()) { if (Channel && Channel->number)
if (Channel && Channel->number) Interface->DisplayChannelNumber(Channel->number);
Interface->DisplayChannelNumber(Channel->number); int BufSize = Width() + 1;
int BufSize = Width() + 1; char buffer[BufSize];
char buffer[BufSize]; if (Channel && Channel->number)
if (Channel && Channel->number) snprintf(buffer, BufSize, "%d %s", Channel->number, Channel->name);
snprintf(buffer, BufSize, "%d %s", Channel->number, Channel->name); else
else snprintf(buffer, BufSize, "%s", Channel ? Channel->name : tr("*** Invalid Channel ***"));
snprintf(buffer, BufSize, "%s", Channel ? Channel->name : tr("*** Invalid Channel ***")); Interface->Fill(0, 0, MenuColumns, 1, clrBackground);
Interface->Fill(0, 0, MenuColumns, 1, clrBackground); Interface->Write(0, 0, buffer);
Interface->Write(0, 0, buffer); time_t t = time(NULL);
time_t t = time(NULL); struct tm *now = localtime(&t);
struct tm *now = localtime(&t); snprintf(buffer, BufSize, "%02d:%02d", now->tm_hour, now->tm_min);
snprintf(buffer, BufSize, "%02d:%02d", now->tm_hour, now->tm_min); Interface->Write(-5, 0, buffer);
Interface->Write(-5, 0, buffer); Interface->Flush();
Interface->Flush();
}
} }
void cDisplayChannel::DisplayInfo(void) void cDisplayChannel::DisplayInfo(void)
@ -1900,7 +1898,6 @@ cRecordControl::~cRecordControl()
{ {
Stop(true); Stop(true);
delete instantId; delete instantId;
Interface->DisplayRecording(dvbApi->Index(), false);
} }
void cRecordControl::Stop(bool KeepInstant) void cRecordControl::Stop(bool KeepInstant)
@ -1916,6 +1913,7 @@ void cRecordControl::Stop(bool KeepInstant)
Timers.Save(); Timers.Save();
} }
timer = NULL; timer = NULL;
Interface->DisplayRecording(dvbApi->Index(), false);
} }
} }
@ -1972,7 +1970,7 @@ void cRecordControls::Stop(cDvbApi *DvbApi)
if (RecordControls[i]) { if (RecordControls[i]) {
if (RecordControls[i]->Uses(DvbApi)) { if (RecordControls[i]->Uses(DvbApi)) {
isyslog(LOG_INFO, "stopping recording on DVB device %d due to higher priority", DvbApi->Index() + 1); isyslog(LOG_INFO, "stopping recording on DVB device %d due to higher priority", DvbApi->Index() + 1);
RecordControls[i]->Stop(); RecordControls[i]->Stop(true);
} }
} }
} }