Change time parameter of SeekTime from int to double

See xbmc/xbmc#10985
This commit is contained in:
Dennis Hamester 2016-11-28 10:40:36 +01:00
parent 3a6f4eb7b5
commit 96a19310ca
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ bool CanSeekStream() { return false; }
/* Callbacks */
void PauseStream(bool bPaused) {}
bool SeekTime(int time, bool backwards, double *startpts) { return false; }
bool SeekTime(double time, bool backwards, double *startpts) { return false; }
void SetSpeed(int speed) {}
PVR_ERROR SetEPGTimeFrame(int) { return PVR_ERROR_NOT_IMPLEMENTED; }