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

Unified Diff: services/video_capture/public/interfaces/video_capture_format_traits.h

Issue 2379253003: Video Capture Service: typemap video_capture's and media's VideoCaptureFormat (Closed)
Patch Set: dcheng@s second round of comments Created 4 years, 2 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: services/video_capture/public/interfaces/video_capture_format_traits.h
diff --git a/services/video_capture/public/interfaces/video_capture_format_traits.h b/services/video_capture/public/interfaces/video_capture_format_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..f79356a8269b1a77e354116ab2bab97c9388d636
--- /dev/null
+++ b/services/video_capture/public/interfaces/video_capture_format_traits.h
@@ -0,0 +1,45 @@
+// 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 SERVICES_VIDEO_CAPTURE_PUBLIC_INTERFACES_VIDEO_CAPTURE_FORMAT_TYPEMAP_H_
+#define SERVICES_VIDEO_CAPTURE_PUBLIC_INTERFACES_VIDEO_CAPTURE_FORMAT_TYPEMAP_H_
+
+#include "media/base/video_capture_types.h"
+#include "mojo/common/common_custom_types_struct_traits.h"
+#include "services/video_capture/public/interfaces/video_capture_format.mojom.h"
+
+namespace mojo {
+
+template <>
+struct StructTraits<video_capture::mojom::VideoCaptureFormatDataView,
+ media::VideoCaptureFormat> {
+
+ static const gfx::Size& frame_size(const media::VideoCaptureFormat& format);
+
+ static float frame_rate(const media::VideoCaptureFormat& format) {
+ return format.frame_rate;
+ }
+
+ static media::mojom::VideoFormat pixel_format(
+ const media::VideoCaptureFormat& format);
+
+ static video_capture::mojom::VideoPixelStorage pixel_storage(
+ const media::VideoCaptureFormat& format);
+
+ static bool Read(video_capture::mojom::VideoCaptureFormatDataView data,
+ media::VideoCaptureFormat* out);
+};
+
+template <>
+struct EnumTraits<video_capture::mojom::VideoPixelStorage,
+ media::VideoPixelStorage> {
+ static video_capture::mojom::VideoPixelStorage ToMojom(
+ media::VideoPixelStorage video_pixel_storage);
+
+ static bool FromMojom(video_capture::mojom::VideoPixelStorage input,
+ media::VideoPixelStorage* out);
+};
+}
+
+#endif // SERVICES_VIDEO_CAPTURE_PUBLIC_INTERFACES_VIDEO_CAPTURE_FORMAT_TYPEMAP_H_

Powered by Google App Engine
This is Rietveld 408576698