summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-04 10:24:43 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-04 10:24:43 +0100
commit5fdc421a10da88f670ed44851e12554b36dd7a76 (patch)
tree77f4e90775922bd1437cd4caba6e42c068265b3a /dvbdevice.c
parentf0741c95c02f81ac607493bfa891bddfa64bbbf2 (diff)
downloadvdr-5fdc421a10da88f670ed44851e12554b36dd7a76.tar.gz
vdr-5fdc421a10da88f670ed44851e12554b36dd7a76.tar.bz2
Added an 'Id' parameter to cDevice::PlayAudio() to allow plugins to easier process the audio data
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index ee8c6235..f5f5f4e2 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 1.151 2006/01/28 15:37:01 kls Exp $
+ * $Id: dvbdevice.c 1.152 2006/02/04 10:21:51 kls Exp $
*/
#include "dvbdevice.h"
@@ -1169,7 +1169,7 @@ int cDvbDevice::PlayVideo(const uchar *Data, int Length)
return WriteAllOrNothing(fd_video, Data, Length, 1000, 10);
}
-int cDvbDevice::PlayAudio(const uchar *Data, int Length)
+int cDvbDevice::PlayAudio(const uchar *Data, int Length, uchar Id)
{
return WriteAllOrNothing(fd_audio, Data, Length, 1000, 10);
}