diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-25 11:39:43 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-25 11:39:43 +0100 |
commit | f9c1974f2de4b749ffc698f72331530c3adc65ea (patch) | |
tree | 93e3291a0979bcb7dc32703d153b0c183a29837f /player.h | |
parent | 73be47a4b1dc1b5f2628ea9b9aeb5d161363d981 (diff) | |
download | vdr-f9c1974f2de4b749ffc698f72331530c3adc65ea.tar.gz vdr-f9c1974f2de4b749ffc698f72331530c3adc65ea.tar.bz2 |
Improved fast-forward/-rewind for audio recordings
Diffstat (limited to 'player.h')
-rw-r--r-- | player.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: player.h 2.2 2009/01/05 13:04:10 kls Exp $ + * $Id: player.h 2.3 2009/01/25 11:03:44 kls Exp $ */ #ifndef __PLAYER_H @@ -26,6 +26,7 @@ protected: bool DevicePoll(cPoller &Poller, int TimeoutMs = 0) { return device ? device->Poll(Poller, TimeoutMs) : false; } bool DeviceFlush(int TimeoutMs = 0) { return device ? device->Flush(TimeoutMs) : true; } bool DeviceHasIBPTrickSpeed(void) { return device ? device->HasIBPTrickSpeed() : false; } + bool DeviceIsPlayingVideo(void) { return device ? device->IsPlayingVideo() : false; } void DeviceTrickSpeed(int Speed) { if (device) device->TrickSpeed(Speed); } void DeviceClear(void) { if (device) device->Clear(); } void DevicePlay(void) { if (device) device->Play(); } |