diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-04 10:24:43 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-04 10:24:43 +0100 |
commit | 5fdc421a10da88f670ed44851e12554b36dd7a76 (patch) | |
tree | 77f4e90775922bd1437cd4caba6e42c068265b3a /dvbdevice.h | |
parent | f0741c95c02f81ac607493bfa891bddfa64bbbf2 (diff) | |
download | vdr-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.h')
-rw-r--r-- | dvbdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index cc9d126a..ac84a946 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.37 2005/12/29 13:33:12 kls Exp $ + * $Id: dvbdevice.h 1.38 2006/02/04 10:21:51 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -119,7 +119,7 @@ protected: virtual bool CanReplay(void) const; virtual bool SetPlayMode(ePlayMode PlayMode); virtual int PlayVideo(const uchar *Data, int Length); - virtual int PlayAudio(const uchar *Data, int Length); + virtual int PlayAudio(const uchar *Data, int Length, uchar Id); public: virtual int64_t GetSTC(void); virtual void TrickSpeed(int Speed); |