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

Side by Side Diff: services/video_capture/public/interfaces/video_capture_device_factory.mojom

Issue 2155303002: Video Capture Mojo Component: Skeleton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into VideoMojoSkeleton2 Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module video_capture.mojom;
6
7 import "services/video_capture/public/interfaces/video_capture_device.mojom";
8 import "services/video_capture/public/interfaces/video_capture_format.mojom";
9
10 enum VideoCaptureApi {
11 LINUX_V4L2_SINGLE_PLANE,
12 WIN_MEDIA_FOUNDATION,
13 WIN_DIRECT_SHOW,
14 MACOSX_AVFOUNDATION,
15 MACOSX_DECKLINK,
16 ANDROID_API1,
17 ANDROID_API2_LEGACY,
18 ANDROID_API2_FULL,
19 ANDROID_API2_LIMITED,
20 ANDROID_TANGO,
21 UNKNOWN
22 };
23
24 enum VideoCaptureTransportType {
25 // For AVFoundation Api, identify devices that are built-in or USB.
26 MACOSX_USB_OR_BUILT_IN,
27 OTHER_TRANSPORT
28 };
29
30 struct VideoCaptureDeviceDescriptor {
31 string display_name;
32 string device_id;
33 string model_id;
34 VideoCaptureApi capture_api;
35 VideoCaptureTransportType transport_type;
36 };
37
38 interface VideoCaptureDeviceFactory {
39 EnumerateDeviceDescriptors()
40 => (array<VideoCaptureDeviceDescriptor> descriptors);
41
42 GetSupportedFormats(VideoCaptureDeviceDescriptor device_descriptor)
43 => (array<VideoCaptureFormat> supported_formats);
44
45 CreateDevice(VideoCaptureDeviceDescriptor device_descriptor,
46 VideoCaptureDevice& device_request);
47 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698