Simplified GetTSPacket().

This commit is contained in:
Rolf Ahrenberg 2007-10-26 23:48:30 +00:00
parent fab6904a57
commit fe02d29eef
1 changed files with 3 additions and 5 deletions

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: device.c,v 1.75 2007/10/26 22:07:10 rahrenbe Exp $ * $Id: device.c,v 1.76 2007/10/26 23:48:30 rahrenbe Exp $
*/ */
#include "config.h" #include "config.h"
@ -384,11 +384,9 @@ bool cIptvDevice::GetTSPacket(uchar *&Data)
} }
return true; return true;
} }
else
cCondWait::SleepMs(100); // to reduce cpu load
} }
else // Reduce cpu load by preventing busylooping
cCondWait::SleepMs(100); // and avoid busy loop cCondWait::SleepMs(100);
Data = NULL; Data = NULL;
return true; return true;
} }