OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "media/base/pipeline.h" | 5 #include "media/base/pipeline.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 | 379 |
380 case kInitVideoRenderer: | 380 case kInitVideoRenderer: |
381 return InitializeVideoRenderer(done_cb); | 381 return InitializeVideoRenderer(done_cb); |
382 | 382 |
383 case kInitPrerolling: | 383 case kInitPrerolling: |
384 filter_collection_.reset(); | 384 filter_collection_.reset(); |
385 { | 385 { |
386 base::AutoLock l(lock_); | 386 base::AutoLock l(lock_); |
387 // We do not want to start the clock running. We only want to set the | 387 // We do not want to start the clock running. We only want to set the |
388 // base media time so our timestamp calculations will be correct. | 388 // base media time so our timestamp calculations will be correct. |
389 clock_->SetTime(base::TimeDelta(), base::TimeDelta()); | 389 clock_->SetTime(demuxer_->GetStartTime(), demuxer_->GetStartTime()); |
390 } | 390 } |
391 if (!audio_renderer_ && !video_renderer_) { | 391 if (!audio_renderer_ && !video_renderer_) { |
392 done_cb.Run(PIPELINE_ERROR_COULD_NOT_RENDER); | 392 done_cb.Run(PIPELINE_ERROR_COULD_NOT_RENDER); |
393 return; | 393 return; |
394 } | 394 } |
395 | 395 |
396 { | 396 { |
397 PipelineMetadata metadata; | 397 PipelineMetadata metadata; |
398 metadata.has_audio = audio_renderer_; | 398 metadata.has_audio = audio_renderer_; |
399 metadata.has_video = video_renderer_; | 399 metadata.has_video = video_renderer_; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 // in the following DoXXX() functions is considered safe as they are owned by | 438 // in the following DoXXX() functions is considered safe as they are owned by |
439 // |pending_callbacks_| and share the same lifetime. | 439 // |pending_callbacks_| and share the same lifetime. |
440 // | 440 // |
441 // That being said, deleting the renderers while keeping |pending_callbacks_| | 441 // That being said, deleting the renderers while keeping |pending_callbacks_| |
442 // running on the media thread would result in crashes. | 442 // running on the media thread would result in crashes. |
443 void Pipeline::DoInitialPreroll(const PipelineStatusCB& done_cb) { | 443 void Pipeline::DoInitialPreroll(const PipelineStatusCB& done_cb) { |
444 DCHECK(task_runner_->BelongsToCurrentThread()); | 444 DCHECK(task_runner_->BelongsToCurrentThread()); |
445 DCHECK(!pending_callbacks_.get()); | 445 DCHECK(!pending_callbacks_.get()); |
446 SerialRunner::Queue bound_fns; | 446 SerialRunner::Queue bound_fns; |
447 | 447 |
448 const base::TimeDelta seek_timestamp = base::TimeDelta(); | 448 base::TimeDelta seek_timestamp = demuxer_->GetStartTime(); |
449 | 449 |
450 // Preroll renderers. | 450 // Preroll renderers. |
451 if (audio_renderer_) { | 451 if (audio_renderer_) { |
452 bound_fns.Push(base::Bind( | 452 bound_fns.Push(base::Bind( |
453 &AudioRenderer::Preroll, base::Unretained(audio_renderer_.get()), | 453 &AudioRenderer::Preroll, base::Unretained(audio_renderer_.get()), |
454 seek_timestamp)); | 454 seek_timestamp)); |
455 } | 455 } |
456 | 456 |
457 if (video_renderer_) { | 457 if (video_renderer_) { |
458 bound_fns.Push(base::Bind( | 458 bound_fns.Push(base::Bind( |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 // TODO(scherkus): should we run the callback? I'm tempted to say the API | 736 // TODO(scherkus): should we run the callback? I'm tempted to say the API |
737 // will only execute the first Seek() request. | 737 // will only execute the first Seek() request. |
738 DVLOG(1) << "Media pipeline has not started, ignoring seek to " | 738 DVLOG(1) << "Media pipeline has not started, ignoring seek to " |
739 << time.InMicroseconds() << " (current state: " << state_ << ")"; | 739 << time.InMicroseconds() << " (current state: " << state_ << ")"; |
740 return; | 740 return; |
741 } | 741 } |
742 | 742 |
743 DCHECK(seek_cb_.is_null()); | 743 DCHECK(seek_cb_.is_null()); |
744 | 744 |
745 SetState(kSeeking); | 745 SetState(kSeeking); |
| 746 base::TimeDelta seek_timestamp = std::max(time, demuxer_->GetStartTime()); |
746 seek_cb_ = seek_cb; | 747 seek_cb_ = seek_cb; |
747 audio_ended_ = false; | 748 audio_ended_ = false; |
748 video_ended_ = false; | 749 video_ended_ = false; |
749 text_ended_ = false; | 750 text_ended_ = false; |
750 | 751 |
751 // Kick off seeking! | 752 // Kick off seeking! |
752 { | 753 { |
753 base::AutoLock auto_lock(lock_); | 754 base::AutoLock auto_lock(lock_); |
754 PauseClockAndStopRendering_Locked(); | 755 PauseClockAndStopRendering_Locked(); |
755 clock_->SetTime(time, time); | 756 clock_->SetTime(seek_timestamp, seek_timestamp); |
756 } | 757 } |
757 DoSeek(time, base::Bind( | 758 DoSeek(seek_timestamp, base::Bind( |
758 &Pipeline::OnStateTransition, base::Unretained(this))); | 759 &Pipeline::OnStateTransition, base::Unretained(this))); |
759 } | 760 } |
760 | 761 |
761 void Pipeline::DoAudioRendererEnded() { | 762 void Pipeline::DoAudioRendererEnded() { |
762 DCHECK(task_runner_->BelongsToCurrentThread()); | 763 DCHECK(task_runner_->BelongsToCurrentThread()); |
763 | 764 |
764 if (state_ != kPlaying) | 765 if (state_ != kPlaying) |
765 return; | 766 return; |
766 | 767 |
767 DCHECK(!audio_ended_); | 768 DCHECK(!audio_ended_); |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 void Pipeline::StartClockIfWaitingForTimeUpdate_Locked() { | 977 void Pipeline::StartClockIfWaitingForTimeUpdate_Locked() { |
977 lock_.AssertAcquired(); | 978 lock_.AssertAcquired(); |
978 if (clock_state_ != CLOCK_WAITING_FOR_AUDIO_TIME_UPDATE) | 979 if (clock_state_ != CLOCK_WAITING_FOR_AUDIO_TIME_UPDATE) |
979 return; | 980 return; |
980 | 981 |
981 clock_state_ = CLOCK_PLAYING; | 982 clock_state_ = CLOCK_PLAYING; |
982 clock_->Play(); | 983 clock_->Play(); |
983 } | 984 } |
984 | 985 |
985 } // namespace media | 986 } // namespace media |
OLD | NEW |