diff options
author | anbr <vdr07@deltab.de> | 2011-01-12 21:14:22 +0100 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2011-01-12 21:14:22 +0100 |
commit | f66c05b344fc865122ecb217b70a2384ce3dfbcd (patch) | |
tree | bd70eaca9ff1633b75a0db3a08d20f097cb99142 /watch.h | |
parent | d63fbc75919d581938a765696468f3f97a8afbdd (diff) | |
download | vdr-plugin-imonlcd-f66c05b344fc865122ecb217b70a2384ce3dfbcd.tar.gz vdr-plugin-imonlcd-f66c05b344fc865122ecb217b70a2384ce3dfbcd.tar.bz2 |
Wrong time on playback of HD recordings (Bug #517)
Diffstat (limited to 'watch.h')
-rw-r--r-- | watch.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -128,10 +128,10 @@ protected: bool Replay(); bool RenderScreen(bool bRedraw); eReplayState ReplayMode() const; - bool ReplayPosition(int ¤t, int &total) const; + bool ReplayPosition(int ¤t, int &total, double& dFrameRate) const; bool CurrentTime(); - bool ReplayTime(int current, int total); - const char * FormatReplayTime(int current, int total) const; + bool ReplayTime(int& current, int& total); + const char * FormatReplayTime(int current, int total, double dFrameRate) const; public: ciMonWatch(); virtual ~ciMonWatch(); |