diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-11-03 11:53:58 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-11-03 11:53:58 +0100 |
commit | 0a517afdf8c4824d2961c477bda753ca81e800db (patch) | |
tree | 6b65f2e9fb1adabc297e3d700608c1f915fc15cf /dvbdevice.c | |
parent | 2e26a1d607b45bff095e93649d830cf7146be5f1 (diff) | |
download | vdr-0a517afdf8c4824d2961c477bda753ca81e800db.tar.gz vdr-0a517afdf8c4824d2961c477bda753ca81e800db.tar.bz2 |
Implemented audio plugin interface
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index c22bc6c8..b8f0f27a 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.32 2002/11/01 11:24:47 kls Exp $ + * $Id: dvbdevice.c 1.33 2002/11/03 11:51:29 kls Exp $ */ #include "dvbdevice.h" @@ -792,10 +792,10 @@ int cDvbDevice::PlayVideo(const uchar *Data, int Length) return -1; } -int cDvbDevice::PlayAudio(const uchar *Data, int Length) +void cDvbDevice::PlayAudio(const uchar *Data, int Length) { - //XXX+ - return -1; + //XXX actually this function will only be needed to implement replaying AC3 over the DVB card's S/PDIF + cDevice::PlayAudio(Data, Length); } bool cDvbDevice::OpenDvr(void) |