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

Unified Diff: media/capture/video/shared_memory_buffer_handle.h

Issue 2818513003: [Mojo Video Capture] Adapt video_capture service to refactored video capture stack (Closed)
Patch Set: Fix compile errors Created 3 years, 8 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/capture/video/shared_memory_buffer_handle.h
diff --git a/media/capture/video/shared_memory_buffer_handle.h b/media/capture/video/shared_memory_buffer_handle.h
new file mode 100644
index 0000000000000000000000000000000000000000..839457ee2232bc6f018750ac7d152672f37d5f97
--- /dev/null
+++ b/media/capture/video/shared_memory_buffer_handle.h
@@ -0,0 +1,37 @@
+// 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.
+
+#ifndef MEDIA_CAPTURE_VIDEO_SHARED_MEMORY_BUFFER_HANDLE_H_
+#define MEDIA_CAPTURE_VIDEO_SHARED_MEMORY_BUFFER_HANDLE_H_
+
+#include "media/capture/capture_export.h"
+#include "media/capture/video/video_capture_buffer_handle.h"
+
+namespace media {
+
+// Provides access to memory-mapped shared memory without participating in the
+// lifetime management of the memory. Instances are typically handed out by
+// an instance of VideoCaptureDevice::Client as part of a
+// VideoCaptureDevice::Client::Buffer, which contains a separate
+// |access_permission| that guarantees that the memory stays alive. The buffers
+// are typically managed by an instance of VideoCaptureBufferPool.
+class CAPTURE_EXPORT SharedMemoryBufferHandle
+ : public VideoCaptureBufferHandle {
+ public:
+ explicit SharedMemoryBufferHandle(base::SharedMemory* shared_memory,
+ size_t mapped_size);
+ ~SharedMemoryBufferHandle() override;
+
+ size_t mapped_size() const override;
+ uint8_t* data() const override;
+ const uint8_t* const_data() const override;
+
+ private:
+ base::SharedMemory* const shared_memory_;
+ const size_t mapped_size_;
+};
+
+} // namespace media
+
+#endif // MEDIA_CAPTURE_VIDEO_SHARED_MEMORY_BUFFER_HANDLE_H_
« no previous file with comments | « media/capture/video/fake_video_capture_device_unittest.cc ('k') | media/capture/video/shared_memory_buffer_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698