summaryrefslogtreecommitdiff
path: root/player.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-08-15 11:16:34 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-08-15 11:16:34 +0200
commitc0ef9a35e2994aad863dfb2195211bb2d9dec766 (patch)
treedbd5b348d2ff8c0f5c3cef4f0521f090a47fef9b /player.c
parentd4ab35d1d92e14e9a4e7490058546642da728e02 (diff)
downloadvdr-c0ef9a35e2994aad863dfb2195211bb2d9dec766.tar.gz
vdr-c0ef9a35e2994aad863dfb2195211bb2d9dec766.tar.bz2
Implemented several replay modes to allow players that play only audio
Diffstat (limited to 'player.c')
-rw-r--r--player.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/player.c b/player.c
index 3abb79b5..3eecc2d4 100644
--- a/player.c
+++ b/player.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: player.c 1.4 2002/08/11 15:49:13 kls Exp $
+ * $Id: player.c 1.5 2002/08/15 10:29:17 kls Exp $
*/
#include "player.h"
@@ -12,9 +12,10 @@
// --- cPlayer ---------------------------------------------------------------
-cPlayer::cPlayer(void)
+cPlayer::cPlayer(ePlayMode PlayMode)
{
device = NULL;
+ playMode = PlayMode;
}
cPlayer::~cPlayer()