diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 11:23:34 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 11:23:34 +0200 |
commit | cd030554e53f8161b4944d14da78756f908de6c4 (patch) | |
tree | 206e1649d3d0ff6752dd13c485a004ca1fcb5d47 /dvbplayer.h | |
parent | 0bb9a1a77b866b79b73fc71e9863e7da5fc57c56 (diff) | |
download | vdr-cd030554e53f8161b4944d14da78756f908de6c4.tar.gz vdr-cd030554e53f8161b4944d14da78756f908de6c4.tar.bz2 |
Switched VDR's own player to the new cPlayer/cControl structures
Diffstat (limited to 'dvbplayer.h')
-rw-r--r-- | dvbplayer.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dvbplayer.h b/dvbplayer.h index b05bcdfa..41590257 100644 --- a/dvbplayer.h +++ b/dvbplayer.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.h 1.1 2002/06/16 10:59:14 kls Exp $ + * $Id: dvbplayer.h 1.2 2002/06/23 10:13:51 kls Exp $ */ #ifndef __DVBPLAYER_H @@ -19,11 +19,10 @@ class cDvbPlayerControl : public cControl { private: cDvbPlayer *player; public: - cDvbPlayerControl(void); + cDvbPlayerControl(const char *FileName); + // Sets up a player for the given file. virtual ~cDvbPlayerControl(); bool Active(void); - bool Start(const char *FileName); - // Starts replaying the given file. void Stop(void); // Stops the current replay session (if any). void Pause(void); |