summaryrefslogtreecommitdiff
path: root/player.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2009-01-25 11:39:43 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2009-01-25 11:39:43 +0100
commitf9c1974f2de4b749ffc698f72331530c3adc65ea (patch)
tree93e3291a0979bcb7dc32703d153b0c183a29837f /player.h
parent73be47a4b1dc1b5f2628ea9b9aeb5d161363d981 (diff)
downloadvdr-f9c1974f2de4b749ffc698f72331530c3adc65ea.tar.gz
vdr-f9c1974f2de4b749ffc698f72331530c3adc65ea.tar.bz2
Improved fast-forward/-rewind for audio recordings
Diffstat (limited to 'player.h')
-rw-r--r--player.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/player.h b/player.h
index 9bd5a368..d252c574 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 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(); }