| Index: content/common/gpu/media/gpu_jpeg_decode_accelerator.cc
|
| diff --git a/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc b/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7674eadf61bebf725f0c8ad267548b8e8826a427
|
| --- /dev/null
|
| +++ b/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc
|
| @@ -0,0 +1,384 @@
|
| +// Copyright 2015 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 "content/common/gpu/media/gpu_jpeg_decode_accelerator.h"
|
| +
|
| +#include <stdint.h>
|
| +
|
| +#include "base/bind.h"
|
| +#include "base/containers/hash_tables.h"
|
| +#include "base/logging.h"
|
| +#include "base/memory/shared_memory.h"
|
| +#include "base/single_thread_task_runner.h"
|
| +#include "base/stl_util.h"
|
| +#include "base/trace_event/trace_event.h"
|
| +#include "content/common/gpu/gpu_channel.h"
|
| +#include "content/common/gpu/gpu_messages.h"
|
| +#include "ipc/ipc_message_macros.h"
|
| +#include "ipc/message_filter.h"
|
| +#include "media/filters/jpeg_parser.h"
|
| +#include "ui/gfx/geometry/size.h"
|
| +
|
| +#if defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY)
|
| +#include "content/common/gpu/media/vaapi_jpeg_decode_accelerator.h"
|
| +#endif
|
| +
|
| +namespace {
|
| +
|
| +void DecodeFinished(scoped_ptr<base::SharedMemory> shm) {
|
| + // Do nothing. Because VideoFrame is backed by |shm|, the purpose of this
|
| + // function is to just keep reference of |shm| to make sure it lives util
|
| + // decode finishes.
|
| +}
|
| +
|
| +bool VerifyDecodeParams(const AcceleratedJpegDecoderMsg_Decode_Params& params) {
|
| + if (params.input_buffer_id < 0) {
|
| + LOG(ERROR) << "BitstreamBuffer id " << params.input_buffer_id
|
| + << " out of range";
|
| + return false;
|
| + }
|
| +
|
| + const int kJpegMaxDimension = UINT16_MAX;
|
| + if (params.coded_size.IsEmpty() ||
|
| + params.coded_size.width() > kJpegMaxDimension ||
|
| + params.coded_size.height() > kJpegMaxDimension) {
|
| + LOG(ERROR) << "invalid coded_size " << params.coded_size.ToString();
|
| + return false;
|
| + }
|
| +
|
| + if (!base::SharedMemory::IsHandleValid(params.input_buffer_handle)) {
|
| + LOG(ERROR) << "invalid input_buffer_handle";
|
| + return false;
|
| + }
|
| +
|
| + if (!base::SharedMemory::IsHandleValid(params.output_video_frame_handle)) {
|
| + LOG(ERROR) << "invalid output_video_frame_handle";
|
| + return false;
|
| + }
|
| +
|
| + if (params.output_buffer_size <
|
| + media::VideoFrame::AllocationSize(media::VideoFrame::I420,
|
| + params.coded_size)) {
|
| + LOG(ERROR) << "output_buffer_size is too small: "
|
| + << params.output_buffer_size;
|
| + return false;
|
| + }
|
| +
|
| + return true;
|
| +}
|
| +
|
| +} // namespace
|
| +
|
| +namespace content {
|
| +
|
| +class GpuJpegDecodeAccelerator::Client
|
| + : public media::JpegDecodeAccelerator::Client,
|
| + public base::NonThreadSafe {
|
| + public:
|
| + Client(content::GpuJpegDecodeAccelerator* owner, int32 route_id)
|
| + : owner_(owner->AsWeakPtr()), route_id_(route_id) {}
|
| +
|
| + ~Client() override { DCHECK(CalledOnValidThread()); }
|
| +
|
| + // media::JpegDecodeAccelerator::Client implementation.
|
| + void VideoFrameReady(int32_t bitstream_buffer_id) override {
|
| + DCHECK(CalledOnValidThread());
|
| + if (owner_)
|
| + owner_->NotifyDecodeStatus(route_id_, bitstream_buffer_id,
|
| + media::JpegDecodeAccelerator::NO_ERRORS);
|
| + }
|
| +
|
| + void NotifyError(int32_t bitstream_buffer_id,
|
| + media::JpegDecodeAccelerator::Error error) override {
|
| + DCHECK(CalledOnValidThread());
|
| + if (owner_)
|
| + owner_->NotifyDecodeStatus(route_id_, bitstream_buffer_id, error);
|
| + }
|
| +
|
| + void Decode(const media::BitstreamBuffer& bitstream_buffer,
|
| + const scoped_refptr<media::VideoFrame>& video_frame) {
|
| + DCHECK(CalledOnValidThread());
|
| + DCHECK(accelerator_);
|
| + accelerator_->Decode(bitstream_buffer, video_frame);
|
| + }
|
| +
|
| + void set_accelerator(scoped_ptr<media::JpegDecodeAccelerator> accelerator) {
|
| + DCHECK(CalledOnValidThread());
|
| + accelerator_ = accelerator.Pass();
|
| + }
|
| +
|
| + private:
|
| + base::WeakPtr<content::GpuJpegDecodeAccelerator> owner_;
|
| + int32 route_id_;
|
| + scoped_ptr<media::JpegDecodeAccelerator> accelerator_;
|
| +};
|
| +
|
| +// Create, destroy, and RemoveClient run on child thread. All other methods run
|
| +// on IO thread.
|
| +class GpuJpegDecodeAccelerator::MessageFilter : public IPC::MessageFilter {
|
| + public:
|
| + explicit MessageFilter(GpuJpegDecodeAccelerator* owner)
|
| + : owner_(owner->AsWeakPtr()),
|
| + child_task_runner_(owner_->child_task_runner_),
|
| + io_task_runner_(owner_->io_task_runner_) {}
|
| +
|
| + void OnChannelError() override { sender_ = nullptr; }
|
| +
|
| + void OnChannelClosing() override { sender_ = nullptr; }
|
| +
|
| + void OnFilterAdded(IPC::Sender* sender) override { sender_ = sender; }
|
| +
|
| + bool OnMessageReceived(const IPC::Message& msg) override {
|
| + const int32 route_id = msg.routing_id();
|
| + if (client_map_.find(route_id) == client_map_.end())
|
| + return false;
|
| +
|
| + bool handled = true;
|
| + IPC_BEGIN_MESSAGE_MAP_WITH_PARAM(MessageFilter, msg, &route_id)
|
| + IPC_MESSAGE_HANDLER(AcceleratedJpegDecoderMsg_Decode, OnDecodeOnIOThread)
|
| + IPC_MESSAGE_HANDLER(AcceleratedJpegDecoderMsg_Destroy,
|
| + OnDestroyOnIOThread)
|
| + IPC_MESSAGE_UNHANDLED(handled = false)
|
| + IPC_END_MESSAGE_MAP()
|
| + return handled;
|
| + }
|
| +
|
| + bool SendOnIOThread(IPC::Message* message) {
|
| + DCHECK(!message->is_sync());
|
| + if (!sender_) {
|
| + delete message;
|
| + return false;
|
| + }
|
| + return sender_->Send(message);
|
| + }
|
| +
|
| + void AddClientOnIOThread(int32 route_id,
|
| + Client* client,
|
| + IPC::Message* reply_msg) {
|
| + DCHECK(io_task_runner_->BelongsToCurrentThread());
|
| + DCHECK(client_map_.count(route_id) == 0);
|
| +
|
| + client_map_[route_id] = client;
|
| + GpuMsg_CreateJpegDecoder::WriteReplyParams(reply_msg, true);
|
| + SendOnIOThread(reply_msg);
|
| + }
|
| +
|
| + void OnDestroyOnIOThread(const int32* route_id) {
|
| + DCHECK(io_task_runner_->BelongsToCurrentThread());
|
| + const auto& it = client_map_.find(*route_id);
|
| + DCHECK(it != client_map_.end());
|
| + Client* client = it->second;
|
| + DCHECK(client);
|
| + client_map_.erase(it);
|
| +
|
| + child_task_runner_->PostTask(
|
| + FROM_HERE, base::Bind(&MessageFilter::DestroyClient, this, client));
|
| + }
|
| +
|
| + void DestroyClient(Client* client) {
|
| + DCHECK(child_task_runner_->BelongsToCurrentThread());
|
| + delete client;
|
| + if (owner_)
|
| + owner_->ClientRemoved();
|
| + }
|
| +
|
| + void NotifyDecodeStatusOnIOThread(int32 route_id,
|
| + int32_t buffer_id,
|
| + media::JpegDecodeAccelerator::Error error) {
|
| + DCHECK(io_task_runner_->BelongsToCurrentThread());
|
| + SendOnIOThread(new AcceleratedJpegDecoderHostMsg_DecodeAck(
|
| + route_id, buffer_id, error));
|
| + }
|
| +
|
| + void OnDecodeOnIOThread(
|
| + const int32* route_id,
|
| + const AcceleratedJpegDecoderMsg_Decode_Params& params) {
|
| + DCHECK(io_task_runner_->BelongsToCurrentThread());
|
| + DCHECK(route_id);
|
| + TRACE_EVENT0("jpeg", "GpuJpegDecodeAccelerator::MessageFilter::OnDecode");
|
| +
|
| + if (!VerifyDecodeParams(params)) {
|
| + NotifyDecodeStatusOnIOThread(
|
| + *route_id, params.input_buffer_id,
|
| + media::JpegDecodeAccelerator::INVALID_ARGUMENT);
|
| + if (base::SharedMemory::IsHandleValid(params.input_buffer_handle))
|
| + base::SharedMemory::CloseHandle(params.input_buffer_handle);
|
| + if (base::SharedMemory::IsHandleValid(params.output_video_frame_handle))
|
| + base::SharedMemory::CloseHandle(params.output_video_frame_handle);
|
| + return;
|
| + }
|
| +
|
| + // For handles in |params|, from now on, |params.output_video_frame_handle|
|
| + // is taken cared by scoper. |params.input_buffer_handle| need to be closed
|
| + // manually for early exits.
|
| + scoped_ptr<base::SharedMemory> output_shm(
|
| + new base::SharedMemory(params.output_video_frame_handle, false));
|
| + if (!output_shm->Map(params.output_buffer_size)) {
|
| + LOG(ERROR) << "Could not map output shared memory for input buffer id "
|
| + << params.input_buffer_id;
|
| + NotifyDecodeStatusOnIOThread(
|
| + *route_id, params.input_buffer_id,
|
| + media::JpegDecodeAccelerator::PLATFORM_FAILURE);
|
| + base::SharedMemory::CloseHandle(params.input_buffer_handle);
|
| + return;
|
| + }
|
| +
|
| + media::BitstreamBuffer input_buffer(params.input_buffer_id,
|
| + params.input_buffer_handle,
|
| + params.input_buffer_size);
|
| +
|
| + uint8_t* shm_memory = static_cast<uint8_t*>(output_shm->memory());
|
| + scoped_refptr<media::VideoFrame> frame =
|
| + media::VideoFrame::WrapExternalSharedMemory(
|
| + media::VideoFrame::I420, // format
|
| + params.coded_size, // coded_size
|
| + gfx::Rect(params.coded_size), // visible_rect
|
| + params.coded_size, // natural_size
|
| + shm_memory, // data
|
| + params.output_buffer_size, // data_size
|
| + params.output_video_frame_handle, // handle
|
| + 0, // data_offset
|
| + base::TimeDelta()); // timestamp
|
| + frame->AddDestructionObserver(
|
| + base::Bind(DecodeFinished, base::Passed(&output_shm)));
|
| +
|
| + if (!frame.get()) {
|
| + LOG(ERROR) << "Could not create VideoFrame for input buffer id "
|
| + << params.input_buffer_id;
|
| + NotifyDecodeStatusOnIOThread(
|
| + *route_id, params.input_buffer_id,
|
| + media::JpegDecodeAccelerator::PLATFORM_FAILURE);
|
| + base::SharedMemory::CloseHandle(params.input_buffer_handle);
|
| + return;
|
| + }
|
| +
|
| + DCHECK_GT(client_map_.count(*route_id), 0u);
|
| + Client* client = client_map_[*route_id];
|
| + client->Decode(input_buffer, frame);
|
| + }
|
| +
|
| + protected:
|
| + ~MessageFilter() override {
|
| + if (client_map_.empty())
|
| + return;
|
| +
|
| + if (child_task_runner_->BelongsToCurrentThread()) {
|
| + STLDeleteValues(&client_map_);
|
| + } else {
|
| + // Make sure |Client| are deleted on child thread.
|
| + scoped_ptr<ClientMap> client_map(new ClientMap);
|
| + client_map->swap(client_map_);
|
| +
|
| + child_task_runner_->PostTask(
|
| + FROM_HERE,
|
| + base::Bind(&DeleteClientMapOnChildThread, base::Passed(&client_map)));
|
| + }
|
| + }
|
| +
|
| + private:
|
| + using ClientMap = base::hash_map<int32, Client*>;
|
| +
|
| + // Must be static because this method runs after destructor.
|
| + static void DeleteClientMapOnChildThread(scoped_ptr<ClientMap> client_map) {
|
| + STLDeleteValues(client_map.get());
|
| + }
|
| +
|
| + base::WeakPtr<GpuJpegDecodeAccelerator> owner_;
|
| +
|
| + // GPU child task runner.
|
| + scoped_refptr<base::SingleThreadTaskRunner> child_task_runner_;
|
| +
|
| + // GPU IO task runner.
|
| + scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
|
| +
|
| + // The sender to which this filter was added.
|
| + IPC::Sender* sender_;
|
| +
|
| + // A map from route id to JpegDecodeAccelerator.
|
| + // Unless in destructor (maybe on child thread), |client_map_| should
|
| + // only be accessed on IO thread.
|
| + ClientMap client_map_;
|
| +};
|
| +
|
| +GpuJpegDecodeAccelerator::GpuJpegDecodeAccelerator(
|
| + GpuChannel* channel,
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner)
|
| + : channel_(channel),
|
| + child_task_runner_(base::ThreadTaskRunnerHandle::Get()),
|
| + io_task_runner_(io_task_runner),
|
| + client_number_(0) {
|
| +}
|
| +
|
| +GpuJpegDecodeAccelerator::~GpuJpegDecodeAccelerator() {
|
| + DCHECK(CalledOnValidThread());
|
| + if (filter_) {
|
| + channel_->RemoveFilter(filter_.get());
|
| + }
|
| +}
|
| +
|
| +void GpuJpegDecodeAccelerator::AddClient(int32 route_id,
|
| + IPC::Message* reply_msg) {
|
| + DCHECK(CalledOnValidThread());
|
| + scoped_ptr<media::JpegDecodeAccelerator> accelerator;
|
| +
|
| +// When adding more platforms, GpuJpegDecoder::Supported need
|
| +// update as well.
|
| +#if defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY)
|
| + accelerator.reset(new VaapiJpegDecodeAccelerator(io_task_runner_));
|
| +#else
|
| + DVLOG(1) << "HW JPEG decode acceleration not available.";
|
| +#endif
|
| +
|
| + scoped_ptr<Client> client(new Client(this, route_id));
|
| + if (!accelerator.get() || !accelerator->Initialize(client.get())) {
|
| + DLOG(ERROR) << "JPEG accelerator Initialize failed";
|
| + GpuMsg_CreateJpegDecoder::WriteReplyParams(reply_msg, false);
|
| + Send(reply_msg);
|
| + return;
|
| + }
|
| + client->set_accelerator(accelerator.Pass());
|
| +
|
| + if (!filter_) {
|
| + DCHECK_EQ(client_number_, 0);
|
| + filter_ = new MessageFilter(this);
|
| + // This should be before AddClientOnIOThread.
|
| + channel_->AddFilter(filter_.get());
|
| + }
|
| + client_number_++;
|
| +
|
| + // In this PostTask, |client| may leak if |io_task_runner_| is destroyed
|
| + // before |client| reached AddClientOnIOThread. However we cannot use scoper
|
| + // to protect it because |client| can only be deleted on child thread. The IO
|
| + // thread is destroyed at termination, at which point it's ok to leak since
|
| + // we're going to tear down the process anyway. So we just crossed fingers
|
| + // here instead of making the code unnecessary complicated.
|
| + io_task_runner_->PostTask(
|
| + FROM_HERE, base::Bind(&MessageFilter::AddClientOnIOThread, filter_,
|
| + route_id, client.release(), reply_msg));
|
| +}
|
| +
|
| +void GpuJpegDecodeAccelerator::NotifyDecodeStatus(
|
| + int32 route_id,
|
| + int32_t buffer_id,
|
| + media::JpegDecodeAccelerator::Error error) {
|
| + DCHECK(CalledOnValidThread());
|
| + Send(new AcceleratedJpegDecoderHostMsg_DecodeAck(route_id, buffer_id, error));
|
| +}
|
| +
|
| +void GpuJpegDecodeAccelerator::ClientRemoved() {
|
| + DCHECK(CalledOnValidThread());
|
| + DCHECK_GT(client_number_, 0);
|
| + client_number_--;
|
| + if (client_number_ == 0) {
|
| + channel_->RemoveFilter(filter_.get());
|
| + filter_ = nullptr;
|
| + }
|
| +}
|
| +
|
| +bool GpuJpegDecodeAccelerator::Send(IPC::Message* message) {
|
| + DCHECK(CalledOnValidThread());
|
| + return channel_->Send(message);
|
| +}
|
| +
|
| +} // namespace content
|
|
|