diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3device.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -246,3 +246,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - fixed audio and video thread deletion in demux device destructor - made "all" the default target in Makefile - assume SSE support implies MMXEXT support +- avoid hang in pause mode with VDR >= 1.3.18 diff --git a/dxr3device.c b/dxr3device.c index 3ec322a..22be02f 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -290,7 +290,7 @@ int cDxr3Device::PlayVideo(const uchar *Data, int Length) { // Why is here so a huge time waster? //usleep(1000000); - return 0; + return -1; } if (m_strBuf.length()) |