| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "base/thread_task_runner_handle.h" | 7 #include "base/thread_task_runner_handle.h" |
| 8 #include "base/timer/timer.h" | 8 #include "base/timer/timer.h" |
| 9 #include "media/base/android/media_codec_audio_decoder.h" | 9 #include "media/base/android/media_codec_audio_decoder.h" |
| 10 #include "media/base/android/media_codec_bridge.h" | 10 #include "media/base/android/media_codec_bridge.h" |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 base::Unretained(this)), | 295 base::Unretained(this)), |
| 296 base::Bind(&MediaCodecDecoderTest::OnStarvation, base::Unretained(this)), | 296 base::Bind(&MediaCodecDecoderTest::OnStarvation, base::Unretained(this)), |
| 297 base::Bind(&MediaCodecDecoderTest::OnDecoderDrained, | 297 base::Bind(&MediaCodecDecoderTest::OnDecoderDrained, |
| 298 base::Unretained(this)), | 298 base::Unretained(this)), |
| 299 base::Bind(&MediaCodecDecoderTest::OnStopDone, base::Unretained(this)), | 299 base::Bind(&MediaCodecDecoderTest::OnStopDone, base::Unretained(this)), |
| 300 base::Bind(&MediaCodecDecoderTest::OnKeyRequired, base::Unretained(this)), | 300 base::Bind(&MediaCodecDecoderTest::OnKeyRequired, base::Unretained(this)), |
| 301 base::Bind(&MediaCodecDecoderTest::OnError, base::Unretained(this)), | 301 base::Bind(&MediaCodecDecoderTest::OnError, base::Unretained(this)), |
| 302 base::Bind(&MediaCodecDecoderTest::OnUpdateCurrentTime, | 302 base::Bind(&MediaCodecDecoderTest::OnUpdateCurrentTime, |
| 303 base::Unretained(this)), | 303 base::Unretained(this)), |
| 304 base::Bind(&MediaCodecDecoderTest::OnVideoSizeChanged, | 304 base::Bind(&MediaCodecDecoderTest::OnVideoSizeChanged, |
| 305 base::Unretained(this)), | |
| 306 base::Bind(&MediaCodecDecoderTest::OnVideoCodecCreated, | |
| 307 base::Unretained(this)))); | 305 base::Unretained(this)))); |
| 308 | 306 |
| 309 data_available_cb_ = base::Bind(&MediaCodecDecoder::OnDemuxerDataAvailable, | 307 data_available_cb_ = base::Bind(&MediaCodecDecoder::OnDemuxerDataAvailable, |
| 310 base::Unretained(decoder_.get())); | 308 base::Unretained(decoder_.get())); |
| 311 } | 309 } |
| 312 | 310 |
| 313 void MediaCodecDecoderTest::OnDataRequested() { | 311 void MediaCodecDecoderTest::OnDataRequested() { |
| 314 if (!data_factory_) | 312 if (!data_factory_) |
| 315 return; | 313 return; |
| 316 | 314 |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 | 757 |
| 760 EXPECT_TRUE(decoder_->IsStopped()); | 758 EXPECT_TRUE(decoder_->IsStopped()); |
| 761 EXPECT_TRUE(decoder_->IsCompleted()); | 759 EXPECT_TRUE(decoder_->IsCompleted()); |
| 762 EXPECT_EQ(data_factory_->last_pts(), pts_stat_.max()); | 760 EXPECT_EQ(data_factory_->last_pts(), pts_stat_.max()); |
| 763 | 761 |
| 764 // Check that the reported video size is the one from the in-stream configs. | 762 // Check that the reported video size is the one from the in-stream configs. |
| 765 EXPECT_EQ(data_factory_->GetConfigs().video_size, video_size_); | 763 EXPECT_EQ(data_factory_->GetConfigs().video_size, video_size_); |
| 766 } | 764 } |
| 767 | 765 |
| 768 } // namespace media | 766 } // namespace media |
| OLD | NEW |