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

Unified Diff: media/capture/video/chromeos/mojo/arc_camera3_metadata.mojom

Issue 2837273004: media: add video capture device for ARC++ camera HAL v3 (Closed)
Patch Set: RELAND: media: add video capture device for ARC++ camera HAL v3 Created 3 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: media/capture/video/chromeos/mojo/arc_camera3_metadata.mojom
diff --git a/media/capture/video/chromeos/mojo/arc_camera3_metadata.mojom b/media/capture/video/chromeos/mojo/arc_camera3_metadata.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..cb52f9fba62ab4fceb0c1fe6c75098aeb8fbb787
--- /dev/null
+++ b/media/capture/video/chromeos/mojo/arc_camera3_metadata.mojom
@@ -0,0 +1,40 @@
+// 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.
+
+module arc.mojom;
+
+import "camera_metadata_tags.mojom";
+
+enum EntryType {
+ TYPE_BYTE = 0,
+ TYPE_INT32 = 1,
+ TYPE_FLOAT = 2,
+ TYPE_INT64 = 3,
+ TYPE_DOUBLE = 4,
+ TYPE_RATIONAL = 5,
+ NUM_TYPES
+};
+
+// CameraMetadataEntry is a translation of the camera_metadata_entry_t in
+// Android camera HAL v3 API (https://goo.gl/OC8sOH). A CameraMetadataEntry
+// holds the values of one type of metadata specified by |tag|.
+struct CameraMetadataEntry {
+ uint32 index;
+ CameraMetadataTag tag;
+ EntryType type;
+ uint32 count; // The number of data entries as |type| in |data|.
+ array<uint8> data;
+};
+
+// CameraMetadata is a translation of the camera_metadata struct in Android
+// camera HAL v3 API (https://goo.gl/G7ligz). A CameraMetadata holds a
+// collection of metadata tags and their values.
+struct CameraMetadata {
+ uint32 size;
+ uint32 entry_count;
+ uint32 entry_capacity;
+ uint32 data_count;
+ uint32 data_capacity;
+ array<CameraMetadataEntry>? entries;
+};
« no previous file with comments | « media/capture/video/chromeos/mojo/arc_camera3.mojom ('k') | media/capture/video/chromeos/mojo/camera_metadata_tags.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698