| Index: media/base/android/media_source_player.cc
|
| diff --git a/media/base/android/media_source_player.cc b/media/base/android/media_source_player.cc
|
| index 20bb540e048a7e3942750e9ee46e48a003382c4c..6d933c90c127220bcd094c065e4ff861d1960698 100644
|
| --- a/media/base/android/media_source_player.cc
|
| +++ b/media/base/android/media_source_player.cc
|
| @@ -150,11 +150,11 @@ bool MediaSourcePlayer::IsPlaying() {
|
| }
|
|
|
| int MediaSourcePlayer::GetVideoWidth() {
|
| - return video_decoder_job_->width();
|
| + return video_decoder_job_->output_width();
|
| }
|
|
|
| int MediaSourcePlayer::GetVideoHeight() {
|
| - return video_decoder_job_->height();
|
| + return video_decoder_job_->output_height();
|
| }
|
|
|
| void MediaSourcePlayer::SeekTo(base::TimeDelta timestamp) {
|
|
|