| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module media.mojom; | 5 module media.mojom; |
| 6 | 6 |
| 7 import "media/mojo/interfaces/media_types.mojom"; | 7 import "media/mojo/interfaces/media_types.mojom"; |
| 8 import "mojo/common/time.mojom"; | 8 import "mojo/common/time.mojom"; |
| 9 import "mojo/common/values.mojom"; | 9 import "mojo/common/values.mojom"; |
| 10 import "ui/gfx/geometry/mojo/geometry.mojom"; | 10 import "ui/gfx/geometry/mojo/geometry.mojom"; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 string device_id; | 73 string device_id; |
| 74 string model_id; | 74 string model_id; |
| 75 VideoCaptureApi capture_api; | 75 VideoCaptureApi capture_api; |
| 76 VideoCaptureTransportType transport_type; | 76 VideoCaptureTransportType transport_type; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 struct VideoCaptureDeviceInfo { | 79 struct VideoCaptureDeviceInfo { |
| 80 VideoCaptureDeviceDescriptor descriptor; | 80 VideoCaptureDeviceDescriptor descriptor; |
| 81 array<VideoCaptureFormat> supported_formats; | 81 array<VideoCaptureFormat> supported_formats; |
| 82 }; | 82 }; |
| 83 |
| 84 struct JpegDecodeInfo { |
| 85 BitstreamBuffer input_buffer; |
| 86 gfx.mojom.Size coded_size; |
| 87 handle<shared_buffer> output_handle; |
| 88 uint32 output_buffer_size; |
| 89 }; |
| OLD | NEW |