| Index: media/player/movie.cc
|
| diff --git a/media/player/movie.cc b/media/player/movie.cc
|
| index 1ef840f2dbe624111724a2b6d244014ad1c27c57..e37a497a5d62ba896bb971ff6c9d23ca91d0c8c4 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;
|
| }
|
|
|
|
|