Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1783)

Unified Diff: content/common/gpu/media/gpu_jpeg_decode_accelerator.h

Issue 1124423008: MJPEG acceleration for video capture using VAAPI, the GPU and IPC part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mjpeg-1-media
Patch Set: gpu_jpeg_decode_accelerator.cc filter to dispatch decode task Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/media/gpu_jpeg_decode_accelerator.h
diff --git a/content/common/gpu/media/gpu_jpeg_decode_accelerator.h b/content/common/gpu/media/gpu_jpeg_decode_accelerator.h
new file mode 100644
index 0000000000000000000000000000000000000000..e5871c9771be7777c34f723565a936f598837019
--- /dev/null
+++ b/content/common/gpu/media/gpu_jpeg_decode_accelerator.h
@@ -0,0 +1,76 @@
+// 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.
+
+#ifndef CONTENT_COMMON_GPU_MEDIA_GPU_JPEG_DECODE_ACCELERATOR_H_
+#define CONTENT_COMMON_GPU_MEDIA_GPU_JPEG_DECODE_ACCELERATOR_H_
+
+#include "base/id_map.h"
+#include "base/memory/ref_counted.h"
+#include "base/synchronization/waitable_event.h"
+#include "base/threading/non_thread_safe.h"
+#include "ipc/ipc_listener.h"
+#include "ipc/ipc_sender.h"
+#include "media/video/jpeg_decode_accelerator.h"
+
+struct AcceleratedJpegDecoderMsg_Decode_Params;
+
+namespace base {
+class SingleThreadTaskRunner;
+}
+
+namespace content {
+class GpuChannel;
+
+class GpuJpegDecodeAccelerator : public IPC::Listener,
+ public IPC::Sender,
+ public base::NonThreadSafe {
+ public:
+ // |channel| must outlive this object.
+ GpuJpegDecodeAccelerator(
+ GpuChannel* channel,
+ const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner);
+ ~GpuJpegDecodeAccelerator() override;
+
+ void AddClient(int32 route_id, IPC::Message* reply_msg);
+
+ // IPC::Listener implementation.
+ bool OnMessageReceived(const IPC::Message& message) override;
+
+ void NotifyDecodeStatus(int32 route_id,
+ int32_t bitstream_buffer_id,
+ media::JpegDecodeAccelerator::Error error);
+
+ // Function to delegate sending to actual sender.
+ bool Send(IPC::Message* message) override;
+
+ private:
+ class Client;
+ class MessageFilter;
+
+ // Removes the client with |route_id|.
+ void RemoveClient(int32 route_id);
+
+ // The lifetime of objects of this class is managed by a GpuChannel. The
+ // GpuChannels destroy all the GpuJpegDecodeAccelerator that they own when
+ // they are destroyed. So a raw pointer is safe.
+ GpuChannel* channel_;
+
+ // The message filter to run JpegDecodeAccelerator::Decode on IO thread.
+ scoped_refptr<MessageFilter> filter_;
+
+ // GPU child task runner.
+ scoped_refptr<base::SingleThreadTaskRunner> child_task_runner_;
+
+ // GPU IO task runner.
+ scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
+
+ // A map from route id to Client.
+ IDMap<Client, IDMapOwnPointer> client_map_;
+
+ DISALLOW_IMPLICIT_CONSTRUCTORS(GpuJpegDecodeAccelerator);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_MEDIA_GPU_JPEG_DECODE_ACCELERATOR_H_

Powered by Google App Engine
This is Rietveld 408576698