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.
*
* $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"
@ -384,11 +384,9 @@ bool cIptvDevice::GetTSPacket(uchar *&Data)
}
return true;
}
else
cCondWait::SleepMs(100); // to reduce cpu load
}
else
cCondWait::SleepMs(100); // and avoid busy loop
// Reduce cpu load by preventing busylooping
cCondWait::SleepMs(100);
Data = NULL;
return true;
}