diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 12:28:35 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 12:28:35 +0200 |
commit | 78ecc96e17981a688f5d373c47298ca2b448a6fa (patch) | |
tree | 2bd22a9b6eaead1b08475650da02003581fe8b34 /player.h | |
parent | b943bf2c503baa79184d8088d28fa740b656db74 (diff) | |
download | vdr-78ecc96e17981a688f5d373c47298ca2b448a6fa.tar.gz vdr-78ecc96e17981a688f5d373c47298ca2b448a6fa.tar.bz2 |
Implemented sending all frames to devices that can handle them in fast forward trick speeds
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 1.19 2006/01/06 11:29:27 kls Exp $ + * $Id: player.h 1.20 2007/10/13 12:18:10 kls Exp $ */ #ifndef __PLAYER_H @@ -24,6 +24,7 @@ protected: bool DeviceSetCurrentAudioTrack(eTrackType Type) { return device ? device->SetCurrentAudioTrack(Type) : false; } 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; } void DeviceTrickSpeed(int Speed) { if (device) device->TrickSpeed(Speed); } void DeviceClear(void) { if (device) device->Clear(); } void DevicePlay(void) { if (device) device->Play(); } |