blob: a721173856bf893d13d35a4eac691ad41e975914 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/mojo/clients/mojo_video_decoder.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback_helpers.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/single_thread_task_runner.h"
#include "media/base/decoder_buffer.h"
#include "media/base/demuxer_stream.h"
#include "media/base/video_frame.h"
#include "media/mojo/common/media_type_converters.h"
#include "media/mojo/common/mojo_decoder_buffer_converter.h"
namespace media {
MojoVideoDecoder::MojoVideoDecoder(
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
GpuVideoAcceleratorFactories* gpu_factories,
mojom::VideoDecoderPtr remote_decoder)
: task_runner_(task_runner),
gpu_factories_(gpu_factories),
remote_decoder_info_(remote_decoder.PassInterface()),
binding_(this) {
(void)gpu_factories_;
DVLOG(1) << __FUNCTION__;
}
MojoVideoDecoder::~MojoVideoDecoder() {
DVLOG(1) << __FUNCTION__;
}
std::string MojoVideoDecoder::GetDisplayName() const {
return "MojoVideoDecoder";
}
void MojoVideoDecoder::Initialize(const VideoDecoderConfig& config,
bool low_delay,
CdmContext* cdm_context,
const InitCB& init_cb,
const OutputCB& output_cb) {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(!cdm_context);
if (!remote_decoder_bound_)
BindRemoteDecoder();
if (has_connection_error_) {
task_runner_->PostTask(FROM_HERE, base::Bind(init_cb, false));
return;
}
init_cb_ = init_cb;
output_cb_ = output_cb;
remote_decoder_->Initialize(
mojom::VideoDecoderConfig::From(config), low_delay,
base::Bind(&MojoVideoDecoder::OnInitializeDone, base::Unretained(this)));
}
// TODO(sandersd): Remove this indirection once a working decoder has been
// brought up.
void MojoVideoDecoder::OnInitializeDone(bool status) {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
base::ResetAndReturn(&init_cb_).Run(status);
}
void MojoVideoDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
const DecodeCB& decode_cb) {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
if (has_connection_error_) {
task_runner_->PostTask(FROM_HERE,
base::Bind(decode_cb, DecodeStatus::DECODE_ERROR));
return;
}
mojom::DecoderBufferPtr mojo_buffer =
mojo_decoder_buffer_writer_->WriteDecoderBuffer(buffer);
if (!mojo_buffer) {
task_runner_->PostTask(FROM_HERE,
base::Bind(decode_cb, DecodeStatus::DECODE_ERROR));
return;
}
// TODO(sandersd): Support more than one decode at a time.
decode_cb_ = decode_cb;
remote_decoder_->Decode(
std::move(mojo_buffer),
base::Bind(&MojoVideoDecoder::OnDecodeDone, base::Unretained(this)));
}
void MojoVideoDecoder::OnVideoFrameDecoded(mojom::VideoFramePtr frame) {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
output_cb_.Run(frame.To<scoped_refptr<VideoFrame>>());
}
void MojoVideoDecoder::OnDecodeDone(mojom::DecodeStatus status) {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
base::ResetAndReturn(&decode_cb_).Run(static_cast<DecodeStatus>(status));
}
void MojoVideoDecoder::Reset(const base::Closure& reset_cb) {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
if (has_connection_error_) {
task_runner_->PostTask(FROM_HERE, reset_cb);
return;
}
reset_cb_ = reset_cb;
remote_decoder_->Reset(
base::Bind(&MojoVideoDecoder::OnResetDone, base::Unretained(this)));
}
void MojoVideoDecoder::OnResetDone() {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
base::ResetAndReturn(&reset_cb_).Run();
}
bool MojoVideoDecoder::NeedsBitstreamConversion() const {
DVLOG(1) << __FUNCTION__;
return false;
}
bool MojoVideoDecoder::CanReadWithoutStalling() const {
DVLOG(1) << __FUNCTION__;
return true;
}
int MojoVideoDecoder::GetMaxDecodeRequests() const {
DVLOG(1) << __FUNCTION__;
return 1;
}
void MojoVideoDecoder::BindRemoteDecoder() {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(!remote_decoder_bound_);
remote_decoder_.Bind(std::move(remote_decoder_info_));
remote_decoder_bound_ = true;
remote_decoder_.set_connection_error_handler(
base::Bind(&MojoVideoDecoder::OnConnectionError, base::Unretained(this)));
// TODO(sandersd): Better buffer sizing.
mojo::ScopedDataPipeConsumerHandle remote_consumer_handle;
mojo_decoder_buffer_writer_ = MojoDecoderBufferWriter::Create(
DemuxerStream::VIDEO, &remote_consumer_handle);
remote_decoder_->Construct(binding_.CreateInterfacePtrAndBind(),
std::move(remote_consumer_handle));
}
void MojoVideoDecoder::OnConnectionError() {
DVLOG(1) << __FUNCTION__;
DCHECK(task_runner_->BelongsToCurrentThread());
has_connection_error_ = true;
// TODO(sandersd): Write a wrapper class (like BindToCurrentLoop) that handles
// the lifetime of callbacks like this.
if (!init_cb_.is_null())
base::ResetAndReturn(&init_cb_).Run(false);
// TODO(sandersd): If there is a pending reset, should these be aborted?
if (!decode_cb_.is_null())
base::ResetAndReturn(&decode_cb_).Run(DecodeStatus::DECODE_ERROR);
if (!reset_cb_.is_null())
base::ResetAndReturn(&reset_cb_).Run();
}
} // namespace media