diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-02-06 11:44:56 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-02-06 11:44:56 +0100 |
commit | 506eb479a567ef00b4c2a332007ba3e03cbe21ef (patch) | |
tree | 9f16677ae8287546f620d364984a8ed5980e13a6 /player.h | |
parent | 1f677366c4c486eddce517d696d672acfd56db37 (diff) | |
download | vdr-506eb479a567ef00b4c2a332007ba3e03cbe21ef.tar.gz vdr-506eb479a567ef00b4c2a332007ba3e03cbe21ef.tar.bz2 |
Removed 'flags' from tTrackId
Diffstat (limited to 'player.h')
-rw-r--r-- | player.h | 4 |
1 files changed, 2 insertions, 2 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.14 2004/12/30 10:44:34 kls Exp $ + * $Id: player.h 1.15 2005/02/06 11:44:56 kls Exp $ */ #ifndef __PLAYER_H @@ -19,7 +19,7 @@ private: cDevice *device; ePlayMode playMode; protected: - bool DeviceSetAvailableTrack(eTrackType Type, int Index, uint16_t Id, const char *Language = NULL, const char *Description = NULL, uint32_t Flags = 0) { return device ? device->SetAvailableTrack(Type, Index, Id, Language, Description, Flags) : false; } + bool DeviceSetAvailableTrack(eTrackType Type, int Index, uint16_t Id, const char *Language = NULL, const char *Description = NULL) { return device ? device->SetAvailableTrack(Type, Index, Id, Language, Description) : 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; } void DeviceTrickSpeed(int Speed) { if (device) device->TrickSpeed(Speed); } |