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

Unified Diff: media/gpu/fake_jpeg_decode_accelerator.h

Issue 2735083002: [Mojo Video Capture] Add test coverage for accelerated jpeg decoding (Closed)
Patch Set: Remove example code that accidentally slipped in with Patch Set 4 Created 3 years, 9 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: media/gpu/fake_jpeg_decode_accelerator.h
diff --git a/media/gpu/fake_jpeg_decode_accelerator.h b/media/gpu/fake_jpeg_decode_accelerator.h
new file mode 100644
index 0000000000000000000000000000000000000000..dbf4ae13530cd31c391a3a19ec0429487d267057
--- /dev/null
+++ b/media/gpu/fake_jpeg_decode_accelerator.h
@@ -0,0 +1,56 @@
+// Copyright 2017 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 MEDIA_GPU_FAKE_JPEG_DECODE_ACCELERATOR_H_
+#define MEDIA_GPU_FAKE_JPEG_DECODE_ACCELERATOR_H_
+
+#include <stdint.h>
+
+#include <memory>
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "media/base/bitstream_buffer.h"
+#include "media/gpu/media_gpu_export.h"
+#include "media/video/jpeg_decode_accelerator.h"
+
+namespace base {
+class SingleThreadTaskRunner;
+}
+
+namespace media {
+
+// Uses software-based decoding. The purpose of this class is to enable testing
+// of communication to the JpegDecodeAccelerator without requiring an actual
+// hardware decoder.
+class MEDIA_GPU_EXPORT FakeJpegDecodeAccelerator
+ : public JpegDecodeAccelerator {
+ public:
+ FakeJpegDecodeAccelerator(
+ const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner);
+ ~FakeJpegDecodeAccelerator() override;
+
+ // JpegDecodeAccelerator implementation.
+ bool Initialize(JpegDecodeAccelerator::Client* client) override;
+ void Decode(const BitstreamBuffer& bitstream_buffer,
+ const scoped_refptr<VideoFrame>& video_frame) override;
+ bool IsSupported() override;
+
+ private:
+ void NotifyError(int32_t bitstream_buffer_id, Error error);
+ void NotifyErrorOnClientThread(int32_t bitstream_buffer_id, Error error);
+ void OnDecodeDoneOnClientThread(int32_t input_buffer_id);
+
+ const scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
emircan 2017/03/09 23:44:25 Is this supposed to be GPU main thread task runner
chfremer 2017/03/10 18:30:49 Done.
+ const scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
+ Client* client_ = nullptr;
+
+ base::WeakPtrFactory<FakeJpegDecodeAccelerator> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeJpegDecodeAccelerator);
+};
+
+} // namespace media
+
+#endif // MEDIA_GPU_FAKE_JPEG_DECODE_ACCELERATOR_H_

Powered by Google App Engine
This is Rietveld 408576698