diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-29 09:47:31 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-29 09:47:31 +0200 |
commit | d2d2b75b2cd48a857dd69417ab81b3c977f4e934 (patch) | |
tree | e9becec01cd7b1bf6138c037e170f58ac69e8492 /menu.c | |
parent | b417112bd4e1b7eec6118121668cc39ab36ff736 (diff) | |
download | vdr-d2d2b75b2cd48a857dd69417ab81b3c977f4e934.tar.gz vdr-d2d2b75b2cd48a857dd69417ab81b3c977f4e934.tar.bz2 |
Added an additional sleep() after going into "Pause live video" mode
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.249 2003/05/25 14:06:17 kls Exp $ + * $Id: menu.c 1.250 2003/05/29 09:35:28 kls Exp $ */ #include "menu.h" @@ -3135,6 +3135,7 @@ bool cRecordControls::PauseLiveVideo(void) sleep(1); // allow device to replay some frames, so we have a picture Interface->Close(); rc->ProcessKey(kPause); // pause, allowing replay mode display + sleep(3); // allow recorded file to fill up enough to continue replaying return true; } Interface->Close(); |