diff options
| -rw-r--r-- | dxr3device.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dxr3device.c b/dxr3device.c index 8177bec..a6f46e0 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -182,7 +182,8 @@ void cDxr3Device::StillPicture(const uchar *Data, int Length) bool cDxr3Device::Poll(cPoller &Poller, int TimeoutMs) { - return true; + Poller.Add(fdVideo, true); + return Poller.Poll(TimeoutMs); } int cDxr3Device::PlayVideo(const uchar *Data, int Length) |
