summaryrefslogtreecommitdiff
path: root/dxr3device.c
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2010-02-05 18:44:07 +0100
committerChristian Gmeiner <christian.gmeiner@gmail.com>2010-02-05 18:44:07 +0100
commitca07a1f8834137c9573c2ceabf0805e900ecbd05 (patch)
tree7e876b45e166c39f695b68768bbfe700c70cafa4 /dxr3device.c
parent6bad97064ca6c8fd1f586f1904359c1ba8d26e18 (diff)
downloadvdr-plugin-dxr3-ca07a1f8834137c9573c2ceabf0805e900ecbd05.tar.gz
vdr-plugin-dxr3-ca07a1f8834137c9573c2ceabf0805e900ecbd05.tar.bz2
add infrastructe to poll audiodrivers fds
Diffstat (limited to 'dxr3device.c')
-rw-r--r--dxr3device.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dxr3device.c b/dxr3device.c
index e48ca72..7b3f754 100644
--- a/dxr3device.c
+++ b/dxr3device.c
@@ -202,6 +202,7 @@ void cDxr3Device::StillPicture(const uchar *Data, int Length)
bool cDxr3Device::Poll(cPoller &Poller, int TimeoutMs)
{
Poller.Add(fdVideo, true);
+ audioOut->poll(Poller);
return Poller.Poll(TimeoutMs);
}