diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-03-13 14:45:12 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-03-13 14:45:12 +0100 |
commit | e7ea3b3c70d737ba758527b806c040dbf8ec8e45 (patch) | |
tree | fb1557cfc75aebfff871f177ceccef12663b3981 /player.h | |
parent | 4c0ab3d3e768cea51748d403e5b7d9ce64b6cbf2 (diff) | |
download | vdr-e7ea3b3c70d737ba758527b806c040dbf8ec8e45.tar.gz vdr-e7ea3b3c70d737ba758527b806c040dbf8ec8e45.tar.bz2 |
Replaced cBackTrace with cPtsIndex
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.3 2009/01/25 11:03:44 kls Exp $ + * $Id: player.h 2.4 2009/03/08 12:29:10 kls Exp $ */ #ifndef __PLAYER_H @@ -34,6 +34,7 @@ protected: void DeviceMute(void) { if (device) device->Mute(); } void DeviceSetVideoDisplayFormat(eVideoDisplayFormat VideoDisplayFormat) { if (device) device->SetVideoDisplayFormat(VideoDisplayFormat); } void DeviceStillPicture(const uchar *Data, int Length) { if (device) device->StillPicture(Data, Length); } + uint64_t DeviceGetSTC(void) { return device ? device->GetSTC() : -1; } void Detach(void); virtual void Activate(bool On) {} // This function is called right after the cPlayer has been attached to |