mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Avoiding occasional bad responsiveness to user interaction caused by assigning events to timers
This commit is contained in:
parent
07dc53331e
commit
ac89e31bde
2
HISTORY
2
HISTORY
@ -2741,3 +2741,5 @@ Video Disk Recorder Revision History
|
|||||||
- Improved performance when paging through very long menu lists.
|
- Improved performance when paging through very long menu lists.
|
||||||
- Removed cSchedule::GetEventNumber() and cSchedule::NumEvents(). There is now
|
- Removed cSchedule::GetEventNumber() and cSchedule::NumEvents(). There is now
|
||||||
cSchedule::Events() that returns the list of events directly.
|
cSchedule::Events() that returns the list of events directly.
|
||||||
|
- Avoiding occasional bad responsiveness to user interaction caused by assigning
|
||||||
|
events to timers.
|
||||||
|
13
vdr.c
13
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/vdr
|
* The project's page is at http://www.cadsoft.de/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.179 2004/03/07 09:39:54 kls Exp $
|
* $Id: vdr.c 1.180 2004/03/14 14:25:02 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -549,10 +549,13 @@ int main(int argc, char *argv[])
|
|||||||
PreviousChannel[PreviousChannelIndex ^= 1] = LastChannel;
|
PreviousChannel[PreviousChannelIndex ^= 1] = LastChannel;
|
||||||
// Timers and Recordings:
|
// Timers and Recordings:
|
||||||
if (!Timers.BeingEdited()) {
|
if (!Timers.BeingEdited()) {
|
||||||
static time_t LastSetEvents = 0;//XXX trigger by actual EPG data modification???
|
// Assign events to timers:
|
||||||
if (!Menu && time(NULL) - LastSetEvents > 5) {
|
if (time(NULL) - LastActivity > 10) {
|
||||||
Timers.SetEvents();
|
static time_t LastSetEvents = 0;//XXX trigger by actual EPG data modification???
|
||||||
LastSetEvents = time(NULL);
|
if (time(NULL) - LastSetEvents > 5) {
|
||||||
|
Timers.SetEvents();
|
||||||
|
LastSetEvents = time(NULL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
time_t Now = time(NULL); // must do all following calls with the exact same time!
|
time_t Now = time(NULL); // must do all following calls with the exact same time!
|
||||||
// Process ongoing recordings:
|
// Process ongoing recordings:
|
||||||
|
Loading…
Reference in New Issue
Block a user