diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-08-15 11:16:34 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-08-15 11:16:34 +0200 |
commit | c0ef9a35e2994aad863dfb2195211bb2d9dec766 (patch) | |
tree | dbd5b348d2ff8c0f5c3cef4f0521f090a47fef9b /player.h | |
parent | d4ab35d1d92e14e9a4e7490058546642da728e02 (diff) | |
download | vdr-c0ef9a35e2994aad863dfb2195211bb2d9dec766.tar.gz vdr-c0ef9a35e2994aad863dfb2195211bb2d9dec766.tar.bz2 |
Implemented several replay modes to allow players that play only audio
Diffstat (limited to 'player.h')
-rw-r--r-- | player.h | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: player.h 1.6 2002/08/15 09:34:08 kls Exp $ + * $Id: player.h 1.7 2002/08/15 11:10:09 kls Exp $ */ #ifndef __PLAYER_H @@ -17,6 +17,7 @@ class cPlayer { friend class cDevice; private: cDevice *device; + ePlayMode playMode; protected: bool DeviceNeedsData(int Wait = 0) { return device ? device->NeedsData(Wait) : false; } void DeviceTrickSpeed(int Speed) { if (device) device->TrickSpeed(Speed); } @@ -27,17 +28,17 @@ protected: void DeviceStillPicture(const uchar *Data, int Length) { if (device) device->StillPicture(Data, Length); } void Detach(void); virtual void Activate(bool On) {} - // This function is called right after the cPlayer has been attached to - // (On == true) or before it gets detached from (On == false) a cDevice. - // It can be used to do things like starting/stopping a thread. + // This function is called right after the cPlayer has been attached to + // (On == true) or before it gets detached from (On == false) a cDevice. + // It can be used to do things like starting/stopping a thread. int PlayVideo(const uchar *Data, int Length); - // 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). + // 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 public: - cPlayer(void); + cPlayer(ePlayMode PlayMode = pmAudioVideo); virtual ~cPlayer(); bool IsAttached(void) { return device != NULL; } virtual bool GetIndex(int &Current, int &Total, bool SnapToIFrame = false) { return false; } |