diff options
Diffstat (limited to 'media/player')
-rw-r--r-- | media/player/movie.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/player/movie.cc b/media/player/movie.cc index 1ef840f..e37a497 100644 --- a/media/player/movie.cc +++ b/media/player/movie.cc @@ -119,7 +119,7 @@ float Movie::GetDuration() { float Movie::GetPosition() { float position = 0.f; if (pipeline_.get()) - position = (pipeline_->GetInterpolatedTime()).InMicroseconds() / 1000000.0f; + position = (pipeline_->GetTime()).InMicroseconds() / 1000000.0f; return position; } |