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: components/arc/common/video_encode_accelerator.typemap

Issue 2892863002: ArcBridge: Add VideoEncodeAccelerator implementation. (Closed)
Patch Set: Address nit from Luis. 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: components/arc/common/video_encode_accelerator.typemap
diff --git a/components/arc/common/video_encode_accelerator.typemap b/components/arc/common/video_encode_accelerator.typemap
new file mode 100644
index 0000000000000000000000000000000000000000..fad26fe5ba0025d8c6fd661501200fd5374d5f3e
--- /dev/null
+++ b/components/arc/common/video_encode_accelerator.typemap
@@ -0,0 +1,16 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
kcwu 2017/06/09 06:30:24 2017
Owen Lin 2017/06/12 06:34:13 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+mojom = "//components/arc/common/video_encode_accelerator.mojom"
+public_headers = [ "//media/video/video_encode_accelerator.h" ]
+traits_headers = [ "//components/arc/video_accelerator/video_encode_accelerator_struct_traits.h" ]
+sources = [
+ "//components/arc/video_accelerator/video_encode_accelerator_struct_traits.cc",
+]
+type_mappings = [
+ "arc.mojom.VideoEncodeAccelerator.Error=media::VideoEncodeAccelerator::Error",
+ "arc.mojom.VideoPixelFormat=media::VideoPixelFormat",
+ "arc.mojom.VideoCodecProfile=media::VideoCodecProfile",
+ "arc.mojom.VideoEncodeProfile=media::VideoEncodeAccelerator::SupportedProfile",
+]

Powered by Google App Engine
This is Rietveld 408576698