blob: 5752961308165ccbcc3c2423e0e1a84c2dd35f34 [file] [log] [blame]
// Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <vector>
#include "base/basictypes.h" // For COMPILE_ASSERT
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/debug/trace_event.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop.h"
#include "base/optional.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "base/time.h"
#include "cobalt/media/base/audio_decoder_config.h"
#include "cobalt/media/base/bind_to_current_loop.h"
#include "cobalt/media/base/channel_layout.h"
#include "cobalt/media/base/decoder_buffer.h"
#include "cobalt/media/base/demuxer.h"
#include "cobalt/media/base/demuxer_stream.h"
#include "cobalt/media/base/media_export.h"
#include "cobalt/media/base/media_log.h"
#include "cobalt/media/base/pipeline.h"
#include "cobalt/media/base/pipeline_status.h"
#include "cobalt/media/base/ranges.h"
#include "cobalt/media/base/sbplayer_set_bounds_helper.h"
#include "cobalt/media/base/starboard_player.h"
#include "cobalt/media/base/video_decoder_config.h"
#include "cobalt/media/base/video_dumper.h"
#include "ui/gfx/size.h"
namespace cobalt {
namespace media {
#if SB_HAS(PLAYER)
using base::Time;
using base::TimeDelta;
namespace {
const char kVideoDumpFileName[] = "video_content.dmp";
// Used to post parameters to SbPlayerPipeline::StartTask() as the number of
// parameters exceed what base::Bind() can support.
struct StartTaskParameters {
Demuxer* demuxer;
SetDrmSystemReadyCB set_drm_system_ready_cb;
PipelineStatusCB ended_cb;
PipelineStatusCB error_cb;
PipelineStatusCB seek_cb;
Pipeline::BufferingStateCB buffering_state_cb;
base::Closure duration_change_cb;
base::Closure output_mode_change_cb;
};
// SbPlayerPipeline is a PipelineBase implementation that uses the SbPlayer
// interface internally.
class MEDIA_EXPORT SbPlayerPipeline : public Pipeline,
public DemuxerHost,
public StarboardPlayer::Host {
public:
// Constructs a media pipeline that will execute on |message_loop|.
SbPlayerPipeline(PipelineWindow window,
const scoped_refptr<base::MessageLoopProxy>& message_loop,
MediaLog* media_log);
~SbPlayerPipeline() OVERRIDE;
void Suspend() OVERRIDE;
void Resume() OVERRIDE;
void Start(Demuxer* demuxer,
const SetDrmSystemReadyCB& set_drm_system_ready_cb,
#if COBALT_MEDIA_ENABLE_VIDEO_DUMPER
const SetEMEInitDataReadyCB& set_eme_init_data_ready_cb,
#endif // COBALT_MEDIA_ENABLE_VIDEO_DUMPER
const PipelineStatusCB& ended_cb, const PipelineStatusCB& error_cb,
const PipelineStatusCB& seek_cb,
const BufferingStateCB& buffering_state_cb,
const base::Closure& duration_change_cb,
const base::Closure& output_mode_change_cb) OVERRIDE;
void Stop(const base::Closure& stop_cb) OVERRIDE;
void Seek(TimeDelta time, const PipelineStatusCB& seek_cb);
bool HasAudio() const OVERRIDE;
bool HasVideo() const OVERRIDE;
float GetPlaybackRate() const OVERRIDE;
void SetPlaybackRate(float playback_rate) OVERRIDE;
float GetVolume() const OVERRIDE;
void SetVolume(float volume) OVERRIDE;
TimeDelta GetMediaTime() const OVERRIDE;
Ranges<TimeDelta> GetBufferedTimeRanges() OVERRIDE;
TimeDelta GetMediaDuration() const OVERRIDE;
void GetNaturalVideoSize(gfx::Size* out_size) const OVERRIDE;
bool DidLoadingProgress() const OVERRIDE;
PipelineStatistics GetStatistics() const OVERRIDE;
SetBoundsCB GetSetBoundsCB() OVERRIDE;
void SetDecodeToTextureOutputMode(bool enabled) OVERRIDE;
private:
void StartTask(const StartTaskParameters& parameters);
void SetVolumeTask(float volume);
void SetPlaybackRateTask(float volume);
void SetDurationTask(TimeDelta duration);
// DemuxerHost implementaion.
void OnBufferedTimeRangesChanged(
const Ranges<base::TimeDelta>& ranges) OVERRIDE;
void SetDuration(TimeDelta duration) OVERRIDE;
void OnDemuxerError(PipelineStatus error) OVERRIDE;
void AddTextStream(DemuxerStream* text_stream,
const TextTrackConfig& config) OVERRIDE;
void RemoveTextStream(DemuxerStream* text_stream) OVERRIDE;
void CreatePlayer(SbDrmSystem drm_system);
void OnDemuxerInitialized(PipelineStatus status);
void OnDemuxerSeeked(PipelineStatus status);
void OnDemuxerStopped();
void OnDemuxerStreamRead(DemuxerStream::Type type,
DemuxerStream::Status status,
const scoped_refptr<DecoderBuffer>& buffer);
// StarboardPlayer::Host implementation.
void OnNeedData(DemuxerStream::Type type) OVERRIDE;
void OnPlayerStatus(SbPlayerState state) OVERRIDE;
void UpdateDecoderConfig(DemuxerStream* stream);
void SuspendTask(base::WaitableEvent* done_event);
void ResumeTask(base::WaitableEvent* done_event);
#if COBALT_MEDIA_ENABLE_VIDEO_DUMPER
void OnEMEInitDataReady(const std::vector<uint8_t>& eme_init_data) {
DCHECK(!eme_init_data.empty());
eme_init_datas_.push_back(eme_init_data);
}
std::vector<std::vector<uint8_t> > eme_init_datas_;
#endif // COBALT_MEDIA_ENABLE_VIDEO_DUMPER
// Message loop used to execute pipeline tasks. It is thread-safe.
scoped_refptr<base::MessageLoopProxy> message_loop_;
// The window this player associates with. It should only be assigned in the
// dtor and accesed once by SbPlayerCreate().
PipelineWindow window_;
// Lock used to serialize access for the following member variables.
mutable base::Lock lock_;
// Amount of available buffered data. Set by filters.
Ranges<int64> buffered_byte_ranges_;
Ranges<TimeDelta> buffered_time_ranges_;
// True when AddBufferedByteRange() has been called more recently than
// DidLoadingProgress().
mutable bool did_loading_progress_;
// Video's natural width and height. Set by filters.
gfx::Size natural_size_;
// Current volume level (from 0.0f to 1.0f). This value is set immediately
// via SetVolume() and a task is dispatched on the message loop to notify the
// filters.
float volume_;
// Current playback rate (>= 0.0f). This value is set immediately via
// SetPlaybackRate() and a task is dispatched on the message loop to notify
// the filters.
float playback_rate_;
// The saved audio and video demuxer streams. Note that it is safe to store
// raw pointers of the demuxer streams, as the Demuxer guarantees that its
// |DemuxerStream|s live as long as the Demuxer itself.
DemuxerStream* audio_stream_;
DemuxerStream* video_stream_;
mutable PipelineStatistics statistics_;
// The following member variables are only accessed by tasks posted to
// |message_loop_|.
// Temporary callback used for Stop().
base::Closure stop_cb_;
// Permanent callbacks passed in via Start().
SetDrmSystemReadyCB set_drm_system_ready_cb_;
PipelineStatusCB ended_cb_;
PipelineStatusCB error_cb_;
BufferingStateCB buffering_state_cb_;
base::Closure duration_change_cb_;
base::Closure output_mode_change_cb_;
base::optional<bool> decode_to_texture_output_mode_;
// Demuxer reference used for setting the preload value.
Demuxer* demuxer_;
bool audio_read_in_progress_;
bool video_read_in_progress_;
TimeDelta duration_;
scoped_refptr<SbPlayerSetBoundsHelper> set_bounds_helper_;
// The following member variables can be accessed from WMPI thread but all
// modifications to them happens on the pipeline thread. So any access of
// them from the WMPI thread and any modification to them on the pipeline
// thread has to guarded by lock. Access to them from the pipeline thread
// needn't to be guarded.
// Temporary callback used for Start() and Seek().
PipelineStatusCB seek_cb_;
base::TimeDelta seek_time_;
scoped_ptr<StarboardPlayer> player_;
bool suspended_;
bool stopped_;
VideoDumper video_dumper_;
DISALLOW_COPY_AND_ASSIGN(SbPlayerPipeline);
};
SbPlayerPipeline::SbPlayerPipeline(
PipelineWindow window,
const scoped_refptr<base::MessageLoopProxy>& message_loop,
MediaLog* media_log)
: window_(window),
message_loop_(message_loop),
natural_size_(0, 0),
volume_(1.f),
playback_rate_(0.f),
audio_stream_(NULL),
video_stream_(NULL),
demuxer_(NULL),
audio_read_in_progress_(false),
video_read_in_progress_(false),
set_bounds_helper_(new SbPlayerSetBoundsHelper),
suspended_(false),
stopped_(false),
video_dumper_(kVideoDumpFileName) {}
SbPlayerPipeline::~SbPlayerPipeline() { DCHECK(!player_); }
void SbPlayerPipeline::Suspend() {
DCHECK(!message_loop_->BelongsToCurrentThread());
base::WaitableEvent waitable_event(true, /* manual_reset */
false /* initially_signaled */);
message_loop_->PostTask(FROM_HERE,
base::Bind(&SbPlayerPipeline::SuspendTask,
base::Unretained(this), &waitable_event));
waitable_event.Wait();
}
void SbPlayerPipeline::Resume() {
DCHECK(!message_loop_->BelongsToCurrentThread());
base::WaitableEvent waitable_event(true, /* manual_reset */
false /* initially_signaled */);
message_loop_->PostTask(FROM_HERE,
base::Bind(&SbPlayerPipeline::ResumeTask,
base::Unretained(this), &waitable_event));
waitable_event.Wait();
}
void SbPlayerPipeline::Start(
Demuxer* demuxer, const SetDrmSystemReadyCB& set_drm_system_ready_cb,
#if COBALT_MEDIA_ENABLE_VIDEO_DUMPER
const SetEMEInitDataReadyCB& set_eme_init_data_ready_cb,
#endif // COBALT_MEDIA_ENABLE_VIDEO_DUMPER
const PipelineStatusCB& ended_cb, const PipelineStatusCB& error_cb,
const PipelineStatusCB& seek_cb, const BufferingStateCB& buffering_state_cb,
const base::Closure& duration_change_cb,
const base::Closure& output_mode_change_cb) {
TRACE_EVENT0("cobalt::media", "SbPlayerPipeline::Start");
DCHECK(demuxer);
DCHECK(!ended_cb.is_null());
DCHECK(!error_cb.is_null());
DCHECK(!seek_cb.is_null());
DCHECK(!buffering_state_cb.is_null());
DCHECK(!duration_change_cb.is_null());
DCHECK(!output_mode_change_cb.is_null());
StartTaskParameters parameters;
parameters.demuxer = demuxer;
parameters.set_drm_system_ready_cb = set_drm_system_ready_cb;
parameters.ended_cb = ended_cb;
parameters.error_cb = error_cb;
parameters.seek_cb = seek_cb;
parameters.buffering_state_cb = buffering_state_cb;
parameters.duration_change_cb = duration_change_cb;
parameters.output_mode_change_cb = output_mode_change_cb;
#if COBALT_MEDIA_ENABLE_VIDEO_DUMPER
set_eme_init_data_ready_cb.Run(base::Bind(
&SbPlayerPipeline::OnEMEInitDataReady, base::Unretained(this)));
#endif // COBALT_MEDIA_ENABLE_VIDEO_DUMPER
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::StartTask, this, parameters));
}
void SbPlayerPipeline::Stop(const base::Closure& stop_cb) {
TRACE_EVENT0("cobalt::media", "SbPlayerPipeline::Stop");
if (!message_loop_->BelongsToCurrentThread()) {
message_loop_->PostTask(FROM_HERE,
base::Bind(&SbPlayerPipeline::Stop, this, stop_cb));
return;
}
DCHECK(stop_cb_.is_null());
DCHECK(!stop_cb.is_null());
stopped_ = true;
if (player_) {
scoped_ptr<StarboardPlayer> player;
{
base::AutoLock auto_lock(lock_);
player = player_.Pass();
}
DLOG(INFO) << "Destroying SbPlayer.";
player.reset();
DLOG(INFO) << "SbPlayer destroyed.";
}
// When Stop() is in progress, we no longer need to call |error_cb_|.
error_cb_.Reset();
if (demuxer_) {
stop_cb_ = stop_cb;
demuxer_->Stop();
OnDemuxerStopped();
} else {
stop_cb.Run();
}
}
void SbPlayerPipeline::Seek(TimeDelta time, const PipelineStatusCB& seek_cb) {
if (!message_loop_->BelongsToCurrentThread()) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::Seek, this, time, seek_cb));
return;
}
if (!player_) {
seek_cb.Run(PIPELINE_ERROR_INVALID_STATE);
return;
}
player_->PrepareForSeek();
DCHECK(seek_cb_.is_null());
DCHECK(!seek_cb.is_null());
if (audio_read_in_progress_ || video_read_in_progress_) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::Seek, this, time, seek_cb));
return;
}
{
base::AutoLock auto_lock(lock_);
seek_cb_ = seek_cb;
seek_time_ = time;
}
demuxer_->Seek(time, BindToCurrentLoop(base::Bind(
&SbPlayerPipeline::OnDemuxerSeeked, this)));
}
bool SbPlayerPipeline::HasAudio() const {
base::AutoLock auto_lock(lock_);
return audio_stream_ != NULL;
}
bool SbPlayerPipeline::HasVideo() const {
base::AutoLock auto_lock(lock_);
return video_stream_ != NULL;
}
float SbPlayerPipeline::GetPlaybackRate() const {
base::AutoLock auto_lock(lock_);
return playback_rate_;
}
void SbPlayerPipeline::SetPlaybackRate(float playback_rate) {
base::AutoLock auto_lock(lock_);
playback_rate_ = playback_rate;
message_loop_->PostTask(
FROM_HERE,
base::Bind(&SbPlayerPipeline::SetPlaybackRateTask, this, playback_rate));
}
float SbPlayerPipeline::GetVolume() const {
base::AutoLock auto_lock(lock_);
return volume_;
}
void SbPlayerPipeline::SetVolume(float volume) {
if (volume < 0.0f || volume > 1.0f) return;
base::AutoLock auto_lock(lock_);
volume_ = volume;
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::SetVolumeTask, this, volume));
}
TimeDelta SbPlayerPipeline::GetMediaTime() const {
base::AutoLock auto_lock(lock_);
if (!seek_cb_.is_null()) {
return seek_time_;
}
if (!player_) {
return TimeDelta();
}
base::TimeDelta media_time;
player_->GetInfo(&statistics_.video_frames_decoded,
&statistics_.video_frames_dropped, &media_time);
return media_time;
}
Ranges<TimeDelta> SbPlayerPipeline::GetBufferedTimeRanges() {
base::AutoLock auto_lock(lock_);
Ranges<TimeDelta> time_ranges;
for (size_t i = 0; i < buffered_time_ranges_.size(); ++i) {
time_ranges.Add(buffered_time_ranges_.start(i),
buffered_time_ranges_.end(i));
}
NOTIMPLEMENTED();
/*if (clock_->Duration() == TimeDelta() || total_bytes_ == 0)
return time_ranges;
for (size_t i = 0; i < buffered_byte_ranges_.size(); ++i) {
TimeDelta start = TimeForByteOffset_Locked(buffered_byte_ranges_.start(i));
TimeDelta end = TimeForByteOffset_Locked(buffered_byte_ranges_.end(i));
// Cap approximated buffered time at the length of the video.
end = std::min(end, clock_->Duration());
time_ranges.Add(start, end);
}*/
return time_ranges;
}
TimeDelta SbPlayerPipeline::GetMediaDuration() const {
base::AutoLock auto_lock(lock_);
return duration_;
}
void SbPlayerPipeline::GetNaturalVideoSize(gfx::Size* out_size) const {
CHECK(out_size);
base::AutoLock auto_lock(lock_);
*out_size = natural_size_;
}
bool SbPlayerPipeline::DidLoadingProgress() const {
base::AutoLock auto_lock(lock_);
bool ret = did_loading_progress_;
did_loading_progress_ = false;
return ret;
}
PipelineStatistics SbPlayerPipeline::GetStatistics() const {
base::AutoLock auto_lock(lock_);
return statistics_;
}
Pipeline::SetBoundsCB SbPlayerPipeline::GetSetBoundsCB() {
return base::Bind(&SbPlayerSetBoundsHelper::SetBounds, set_bounds_helper_);
}
void SbPlayerPipeline::SetDecodeToTextureOutputMode(bool enabled) {
TRACE_EVENT1("cobalt::media",
"SbPlayerPipeline::SetDecodeToTextureOutputMode", "mode",
enabled);
if (!message_loop_->BelongsToCurrentThread()) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::SetDecodeToTextureOutputMode,
this, enabled));
return;
}
// The player can't be created yet, if it is, then we're updating the output
// mode too late.
DCHECK(!player_);
decode_to_texture_output_mode_ = enabled;
}
void SbPlayerPipeline::StartTask(const StartTaskParameters& parameters) {
TRACE_EVENT0("cobalt::media", "SbPlayerPipeline::StartTask");
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK(!demuxer_);
demuxer_ = parameters.demuxer;
set_drm_system_ready_cb_ = parameters.set_drm_system_ready_cb;
ended_cb_ = parameters.ended_cb;
error_cb_ = parameters.error_cb;
{
base::AutoLock auto_lock(lock_);
seek_cb_ = parameters.seek_cb;
}
buffering_state_cb_ = parameters.buffering_state_cb;
duration_change_cb_ = parameters.duration_change_cb;
output_mode_change_cb_ = parameters.output_mode_change_cb;
const bool kEnableTextTracks = false;
demuxer_->Initialize(this,
BindToCurrentLoop(base::Bind(
&SbPlayerPipeline::OnDemuxerInitialized, this)),
kEnableTextTracks);
}
void SbPlayerPipeline::SetVolumeTask(float volume) {
DCHECK(message_loop_->BelongsToCurrentThread());
if (player_) {
player_->SetVolume(volume_);
}
}
void SbPlayerPipeline::SetPlaybackRateTask(float volume) {
DCHECK(message_loop_->BelongsToCurrentThread());
if (player_) {
player_->SetPlaybackRate(playback_rate_);
}
}
void SbPlayerPipeline::SetDurationTask(TimeDelta duration) {
DCHECK(message_loop_->BelongsToCurrentThread());
if (!duration_change_cb_.is_null()) {
duration_change_cb_.Run();
}
}
void SbPlayerPipeline::OnBufferedTimeRangesChanged(
const Ranges<base::TimeDelta>& ranges) {
base::AutoLock auto_lock(lock_);
did_loading_progress_ = true;
buffered_time_ranges_ = ranges;
}
void SbPlayerPipeline::SetDuration(TimeDelta duration) {
base::AutoLock auto_lock(lock_);
duration_ = duration;
message_loop_->PostTask(
FROM_HERE,
base::Bind(&SbPlayerPipeline::SetDurationTask, this, duration));
}
void SbPlayerPipeline::OnDemuxerError(PipelineStatus error) {
if (!message_loop_->BelongsToCurrentThread()) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::OnDemuxerError, this, error));
return;
}
if (error != PIPELINE_OK) {
ResetAndRunIfNotNull(&error_cb_, error);
}
}
void SbPlayerPipeline::AddTextStream(DemuxerStream* text_stream,
const TextTrackConfig& config) {
NOTREACHED();
}
void SbPlayerPipeline::RemoveTextStream(DemuxerStream* text_stream) {
NOTREACHED();
}
void SbPlayerPipeline::CreatePlayer(SbDrmSystem drm_system) {
TRACE_EVENT0("cobalt::media", "SbPlayerPipeline::CreatePlayer");
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK(audio_stream_);
DCHECK(video_stream_);
if (suspended_) {
message_loop_->PostTask(
FROM_HERE,
base::Bind(&SbPlayerPipeline::CreatePlayer, this, drm_system));
return;
}
// TODO: Check |suspended_| here as the pipeline can be suspended before the
// player is created. In this case we should delay creating the player as the
// creation of player may fail.
const AudioDecoderConfig& audio_config =
audio_stream_->audio_decoder_config();
const VideoDecoderConfig& video_config =
video_stream_->video_decoder_config();
#if COBALT_MEDIA_ENABLE_VIDEO_DUMPER
video_dumper_.DumpEmeInitData(eme_init_datas_);
video_dumper_.DumpConfigs(audio_config, video_config);
#endif // COBALT_MEDIA_ENABLE_VIDEO_DUMPER
{
base::AutoLock auto_lock(lock_);
player_.reset(new StarboardPlayer(
message_loop_, audio_config, video_config, window_, drm_system, this,
set_bounds_helper_.get(), *decode_to_texture_output_mode_));
SetPlaybackRateTask(playback_rate_);
SetVolumeTask(volume_);
}
if (player_->IsValid()) {
base::Closure output_mode_change_cb;
{
base::AutoLock auto_lock(lock_);
DCHECK(!output_mode_change_cb_.is_null());
output_mode_change_cb = base::ResetAndReturn(&output_mode_change_cb_);
}
output_mode_change_cb.Run();
UpdateDecoderConfig(audio_stream_);
UpdateDecoderConfig(video_stream_);
return;
}
player_.reset();
PipelineStatusCB seek_cb;
{
base::AutoLock auto_lock(lock_);
DCHECK(!seek_cb_.is_null());
seek_cb = base::ResetAndReturn(&seek_cb_);
}
seek_cb.Run(DECODER_ERROR_NOT_SUPPORTED);
}
void SbPlayerPipeline::OnDemuxerInitialized(PipelineStatus status) {
TRACE_EVENT0("cobalt::media", "SbPlayerPipeline::OnDemuxerInitialized");
DCHECK(message_loop_->BelongsToCurrentThread());
if (stopped_) {
return;
}
if (status != PIPELINE_OK) {
ResetAndRunIfNotNull(&error_cb_, status);
return;
}
if (suspended_) {
message_loop_->PostTask(
FROM_HERE,
base::Bind(&SbPlayerPipeline::OnDemuxerInitialized, this, status));
return;
}
DemuxerStream* audio_stream = demuxer_->GetStream(DemuxerStream::AUDIO);
DemuxerStream* video_stream = demuxer_->GetStream(DemuxerStream::VIDEO);
if (audio_stream == NULL || video_stream == NULL) {
LOG(INFO) << "The video doesn't contain both an audio and a video track.";
ResetAndRunIfNotNull(&error_cb_, DEMUXER_ERROR_NO_SUPPORTED_STREAMS);
return;
}
{
base::AutoLock auto_lock(lock_);
audio_stream_ = audio_stream;
video_stream_ = video_stream;
buffering_state_cb_.Run(kHaveMetadata);
bool is_encrypted = audio_stream_->audio_decoder_config().is_encrypted();
natural_size_ = video_stream_->video_decoder_config().natural_size();
is_encrypted |= video_stream_->video_decoder_config().is_encrypted();
if (is_encrypted) {
set_drm_system_ready_cb_.Run(
BindToCurrentLoop(base::Bind(&SbPlayerPipeline::CreatePlayer, this)));
return;
}
}
CreatePlayer(kSbDrmSystemInvalid);
}
void SbPlayerPipeline::OnDemuxerSeeked(PipelineStatus status) {
DCHECK(message_loop_->BelongsToCurrentThread());
if (status == PIPELINE_OK) {
player_->Seek(seek_time_);
}
}
void SbPlayerPipeline::OnDemuxerStopped() {
TRACE_EVENT0("cobalt::media", "SbPlayerPipeline::OnDemuxerStopped");
if (!message_loop_->BelongsToCurrentThread()) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::OnDemuxerStopped, this));
return;
}
base::ResetAndReturn(&stop_cb_).Run();
}
void SbPlayerPipeline::OnDemuxerStreamRead(
DemuxerStream::Type type, DemuxerStream::Status status,
const scoped_refptr<DecoderBuffer>& buffer) {
DCHECK(type == DemuxerStream::AUDIO || type == DemuxerStream::VIDEO)
<< "Unsupported DemuxerStream::Type " << type;
if (!message_loop_->BelongsToCurrentThread()) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&SbPlayerPipeline::OnDemuxerStreamRead, this,
type, status, buffer));
return;
}
DemuxerStream* stream =
type == DemuxerStream::AUDIO ? audio_stream_ : video_stream_;
DCHECK(stream);
// In case if Stop() has been called.
if (!player_) {
return;
}
if (status == DemuxerStream::kAborted) {
if (type == DemuxerStream::AUDIO) {
DCHECK(audio_read_in_progress_);
audio_read_in_progress_ = false;
} else {
DCHECK(video_read_in_progress_);
video_read_in_progress_ = false;
}
if (!seek_cb_.is_null()) {
PipelineStatusCB seek_cb;
{
base::AutoLock auto_lock(lock_);
seek_cb = base::ResetAndReturn(&seek_cb_);
}
seek_cb.Run(PIPELINE_OK);
}
return;
}
if (status == DemuxerStream::kConfigChanged) {
UpdateDecoderConfig(stream);
stream->Read(
base::Bind(&SbPlayerPipeline::OnDemuxerStreamRead, this, type));
return;
}
if (type == DemuxerStream::AUDIO) {
audio_read_in_progress_ = false;
} else {
video_read_in_progress_ = false;
}
video_dumper_.DumpAccessUnit(buffer);
player_->WriteBuffer(type, buffer);
}
void SbPlayerPipeline::OnNeedData(DemuxerStream::Type type) {
DCHECK(message_loop_->BelongsToCurrentThread());
// In case if Stop() has been called.
if (!player_) {
return;
}
if (type == DemuxerStream::AUDIO) {
if (audio_read_in_progress_) {
return;
}
audio_read_in_progress_ = true;
} else {
DCHECK_EQ(type, DemuxerStream::VIDEO);
if (video_read_in_progress_) {
return;
}
video_read_in_progress_ = true;
}
DemuxerStream* stream =
type == DemuxerStream::AUDIO ? audio_stream_ : video_stream_;
DCHECK(stream);
stream->Read(base::Bind(&SbPlayerPipeline::OnDemuxerStreamRead, this, type));
}
void SbPlayerPipeline::OnPlayerStatus(SbPlayerState state) {
DCHECK(message_loop_->BelongsToCurrentThread());
// In case if Stop() has been called.
if (!player_) {
return;
}
switch (state) {
case kSbPlayerStateInitialized:
NOTREACHED();
break;
case kSbPlayerStatePrerolling:
break;
case kSbPlayerStatePresenting:
buffering_state_cb_.Run(kPrerollCompleted);
if (!seek_cb_.is_null()) {
PipelineStatusCB seek_cb;
{
base::AutoLock auto_lock(lock_);
seek_cb = base::ResetAndReturn(&seek_cb_);
}
seek_cb.Run(PIPELINE_OK);
}
break;
case kSbPlayerStateEndOfStream:
ended_cb_.Run(PIPELINE_OK);
break;
case kSbPlayerStateDestroyed:
break;
case kSbPlayerStateError:
ResetAndRunIfNotNull(&error_cb_, PIPELINE_ERROR_DECODE);
break;
}
}
void SbPlayerPipeline::UpdateDecoderConfig(DemuxerStream* stream) {
DCHECK(message_loop_->BelongsToCurrentThread());
if (stream->type() == DemuxerStream::AUDIO) {
stream->audio_decoder_config();
} else {
DCHECK_EQ(stream->type(), DemuxerStream::VIDEO);
const VideoDecoderConfig& decoder_config = stream->video_decoder_config();
base::AutoLock auto_lock(lock_);
natural_size_ = decoder_config.natural_size();
player_->UpdateVideoResolution(static_cast<int>(natural_size_.width()),
static_cast<int>(natural_size_.height()));
}
}
void SbPlayerPipeline::SuspendTask(base::WaitableEvent* done_event) {
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK(done_event);
DCHECK(!suspended_);
if (suspended_) {
done_event->Signal();
return;
}
if (player_) {
player_->Suspend();
}
suspended_ = true;
done_event->Signal();
}
void SbPlayerPipeline::ResumeTask(base::WaitableEvent* done_event) {
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK(done_event);
DCHECK(suspended_);
if (!suspended_) {
done_event->Signal();
return;
}
if (player_) {
player_->Resume();
}
suspended_ = false;
done_event->Signal();
}
} // namespace
#endif // SB_HAS(PLAYER)
scoped_refptr<Pipeline> Pipeline::Create(
PipelineWindow window,
const scoped_refptr<base::MessageLoopProxy>& message_loop,
MediaLog* media_log) {
#if SB_HAS(PLAYER)
return new SbPlayerPipeline(window, message_loop, media_log);
#else
return NULL;
#endif
}
} // namespace media
} // namespace cobalt