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

Unified Diff: content/browser/renderer_host/gpu_jpeg_decoder.h

Issue 1132683004: MJPEG acceleration for video capture, browser part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mjpeg-2-gpu
Patch Set: fix gpu channel establish Created 5 years, 6 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/browser/renderer_host/gpu_jpeg_decoder.h
diff --git a/content/browser/renderer_host/gpu_jpeg_decoder.h b/content/browser/renderer_host/gpu_jpeg_decoder.h
new file mode 100644
index 0000000000000000000000000000000000000000..39a780837a5b9d0a27dc10b78ee8f4fb72cf5692
--- /dev/null
+++ b/content/browser/renderer_host/gpu_jpeg_decoder.h
@@ -0,0 +1,119 @@
+// 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_BROWSER_RENDERER_HOST_GPU_JPEG_DECODER_H_
+#define CONTENT_BROWSER_RENDERER_HOST_GPU_JPEG_DECODER_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "base/single_thread_task_runner.h"
+#include "base/threading/thread.h"
+#include "content/common/content_export.h"
+#include "media/video/capture/video_capture_device.h"
+#include "media/video/jpeg_decode_accelerator.h"
+
+namespace media {
+class VideoFrame;
+}
+
+namespace content {
+class GpuChannelHost;
+
+// Adapter to GpuJpegDecodeAccelerator for VideoCaptureDevice::Client. It takes
+// care of GpuJpegDecodeAccelerator creation, shared memory, and threading
+// issues.
+//
+// All public methods except JpegDecodeAccelerator::Client ones should be called
+// on the same thread.
+class CONTENT_EXPORT GpuJpegDecoder
+ : public media::JpegDecodeAccelerator::Client,
+ public base::NonThreadSafe,
+ public base::SupportsWeakPtr<GpuJpegDecoder> {
+ public:
+ typedef base::Callback<void(
+ scoped_ptr<media::VideoCaptureDevice::Client::Buffer>,
+ const scoped_refptr<media::VideoFrame>&,
+ const base::TimeTicks&)> DecodeDoneCB;
+ typedef base::Callback<void(const std::string&)> ErrorCB;
+
+ // Returns true if JPEG hardware decoding is supported on this device.
+ static bool Supported();
+
+ // |decode_done_cb| is called when decode succeed.
+ // |error_cb| is called when error.
+ GpuJpegDecoder(const DecodeDoneCB& decode_done_cb, const ErrorCB& error_cb);
+ ~GpuJpegDecoder();
+
+ // Creates and intializes decoder asynchronously.
+ void Initialize();
+
+ // Returns true if Initialize is done and it's okay to call
+ // DecodeCapturedData.
+ bool ReadyToDecode() { return decoder_; }
+
+ // Decodes a JPEG picture.
+ void DecodeCapturedData(
+ const uint8* data,
+ size_t in_buffer_size,
+ const media::VideoCaptureFormat& frame_format,
+ const base::TimeTicks& timestamp,
+ scoped_ptr<media::VideoCaptureDevice::Client::Buffer> out_buffer);
+
+ // JpegDecodeAccelerator::Client implementation.
+ // These will be called on IO thread.
+ virtual void VideoFrameReady(int32_t buffer_id) override;
+ virtual void NotifyError(int32_t buffer_id,
+ media::JpegDecodeAccelerator::Error error) override;
+
+ private:
+ // Initialization helper, to establish GPU channel
+ static void EstablishGpuChannelOnUIThread(
+ const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
+ base::WeakPtr<GpuJpegDecoder> weak_this);
+
+ static void GpuChannelEstablishedOnUIThread(
+ const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
+ base::WeakPtr<GpuJpegDecoder> weak_this);
+
+ void InitializeDone(scoped_refptr<GpuChannelHost> gpu_channel_host);
+
+ // Returns true if the decoding of last frame is not finished yet.
+ bool IsDecoding_Locked();
+
+ scoped_refptr<GpuChannelHost> gpu_channel_host_;
+
+ // The underlying JPEG decode accelerator.
+ scoped_ptr<media::JpegDecodeAccelerator> decoder_;
+
+ // The callback to run when decode succeeds.
+ const DecodeDoneCB decode_done_cb_;
+
+ // Guards |decode_done_closure_| and |error_cb_|.
+ base::Lock lock_;
+
+ // The callback to run when an error occurs.
+ const ErrorCB error_cb_;
+
+ // The closure of |decode_done_cb_| with bound parameters.
+ base::Closure decode_done_closure_;
+
+ // Next id for |in_buffer_|.
+ int32 next_bitstream_buffer_id_;
+
+ // Shared memory to store JPEG stream buffer. |in_buffer_| is backed by this.
+ scoped_ptr<base::SharedMemory> in_shared_memory_;
+
+ // JPEG stream buffer as input to JpegDecodeAccelerator.
+ media::BitstreamBuffer in_buffer_;
+
+ DISALLOW_COPY_AND_ASSIGN(GpuJpegDecoder);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_GPU_JPEG_DECODER_H_

Powered by Google App Engine
This is Rietveld 408576698