mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed high CPU usage in transfer mode
This commit is contained in:
parent
25abe47a3b
commit
f7d6a96935
1
HISTORY
1
HISTORY
@ -1106,3 +1106,4 @@ Video Disk Recorder Revision History
|
||||
- The "Left" and "Right" keys are now used to page up and down in text displays
|
||||
(like the EPG descriptions or the results of commands executed from the
|
||||
"Commands" menu).
|
||||
- Fixed high CPU usage in transfer mode.
|
||||
|
4
dvbapi.c
4
dvbapi.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: dvbapi.c 1.162 2002/03/10 11:01:38 kls Exp $
|
||||
* $Id: dvbapi.c 1.163 2002/03/16 14:20:47 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbapi.h"
|
||||
@ -1411,7 +1411,7 @@ void cTransferBuffer::Output(void)
|
||||
int r = Get(b, sizeof(b));
|
||||
if (r > 0) {
|
||||
uchar *p = b;
|
||||
while (r > 0 && Busy()) {
|
||||
while (r > 0 && Busy() && cFile::FileReadyForWriting(toDevice, 100)) {
|
||||
int w = write(toDevice, p, r);
|
||||
if (w > 0) {
|
||||
p += w;
|
||||
|
Loading…
Reference in New Issue
Block a user