summaryrefslogtreecommitdiff
path: root/player.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-11-03 11:53:58 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-11-03 11:53:58 +0100
commit0a517afdf8c4824d2961c477bda753ca81e800db (patch)
tree6b65f2e9fb1adabc297e3d700608c1f915fc15cf /player.h
parent2e26a1d607b45bff095e93649d830cf7146be5f1 (diff)
downloadvdr-0a517afdf8c4824d2961c477bda753ca81e800db.tar.gz
vdr-0a517afdf8c4824d2961c477bda753ca81e800db.tar.bz2
Implemented audio plugin interface
Diffstat (limited to 'player.h')
-rw-r--r--player.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/player.h b/player.h
index 1e1fabfa..faeab1a7 100644
--- a/player.h
+++ b/player.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: player.h 1.9 2002/10/12 11:17:02 kls Exp $
+ * $Id: player.h 1.10 2002/11/03 11:27:30 kls Exp $
*/
#ifndef __PLAYER_H
@@ -35,8 +35,8 @@ protected:
// Sends the given Data to the video device and returns the number of
// bytes that have actually been accepted by the video device (or a
// negative value in case of an error).
- int PlayAudio(const uchar *Data, int Length);
- // XXX+ TODO
+ void PlayAudio(const uchar *Data, int Length);
+ // Plays additional audio streams, like Dolby Digital.
public:
cPlayer(ePlayMode PlayMode = pmAudioVideo);
virtual ~cPlayer();