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

Side by Side Diff: media/capture/mojo/video_capture_types.mojom

Issue 2905823002: Add Mojo interfaces for GpuJpegDecodeAccelerator and GpuJpegDecodeAcceleratorHost (Closed)
Patch Set: mojo interface 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 unified diff | Download patch
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « no previous file | media/gpu/ipc/client/BUILD.gn » ('j') | media/gpu/ipc/service/gpu_jpeg_decode_accelerator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698