From 6bc436aeed0322155dc0d6a0a9ebeb1baa63f0d5 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 11 Nov 2000 12:21:38 +0100 Subject: [PATCH] Fixed a timing problem with OSD refresh and SVDRP --- HISTORY | 1 + interface.c | 15 +++++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/HISTORY b/HISTORY index f55daa01..24300930 100644 --- a/HISTORY +++ b/HISTORY @@ -275,3 +275,4 @@ Video Disk Recorder Revision History - Implemented "internationalization" (see 'i18n.c' for information on how to add new languages). - Fixed learning keys on the PC keyboard (display oscillated). +- Fixed a timing problem with OSD refresh and SVDRP. diff --git a/interface.c b/interface.c index 65008f1b..9ecc7473 100644 --- a/interface.c +++ b/interface.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.c 1.30 2000/11/10 17:03:02 kls Exp $ + * $Id: interface.c 1.31 2000/11/11 12:13:35 kls Exp $ */ #include "interface.h" @@ -58,8 +58,7 @@ void cInterface::Close(void) unsigned int cInterface::GetCh(bool Wait, bool *Repeat, bool *Release) { - if (open) - cDvbApi::PrimaryDvbApi->Flush(); + Flush(); if (!rcIo->InputAvailable()) cFile::AnyFileReady(-1, Wait ? 1000 : 0); unsigned int Command; @@ -68,6 +67,7 @@ unsigned int cInterface::GetCh(bool Wait, bool *Repeat, bool *Release) eKeys cInterface::GetKey(bool Wait) { + Flush(); if (SVDRP) SVDRP->Process(); eKeys Key = keyFromWait; @@ -90,8 +90,7 @@ void cInterface::PutKey(eKeys Key) eKeys cInterface::Wait(int Seconds, bool KeepChar) { - if (open) - cDvbApi::PrimaryDvbApi->Flush(); + Flush(); eKeys Key = kNone; time_t timeout = time(NULL) + Seconds; for (;;) { @@ -325,7 +324,7 @@ void cInterface::QueryKeys(void) WriteText(1, 1, tr("Learning Remote Control Keys")); WriteText(1, 3, tr("Phase 1: Detecting RC code type")); WriteText(1, 5, tr("Press any key on the RC unit")); - cDvbApi::PrimaryDvbApi->Flush(); + Flush(); #ifndef REMOTE_KBD unsigned char Code = 0; unsigned short Address; @@ -341,11 +340,11 @@ void cInterface::QueryKeys(void) Keys.address = Address; WriteText(1, 5, tr("RC code detected!")); WriteText(1, 6, tr("Do not press any key...")); - cDvbApi::PrimaryDvbApi->Flush(); + Flush(); rcIo->Flush(3000); ClearEol(0, 5); ClearEol(0, 6); - cDvbApi::PrimaryDvbApi->Flush(); + Flush(); break; } #endif