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

Side by Side Diff: components/arc/common/video_accelerator.mojom

Issue 2036723002: Limit the number of ARC codec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address dcheng's comments: static_assert Created 4 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
« no previous file with comments | « chrome/gpu/gpu_arc_video_service.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // This file defined the mojo interface between Android and Chromium for video 5 // This file defined the mojo interface between Android and Chromium for video
6 // decoding and encoding. See comments of ArcVideoAccelerator for more info. 6 // decoding and encoding. See comments of ArcVideoAccelerator for more info.
7 7
8 module arc.mojom; 8 module arc.mojom;
9 9
10 [Extensible] 10 [Extensible]
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 DEVICE_ENCODER = 0, 43 DEVICE_ENCODER = 0,
44 DEVICE_DECODER = 1, 44 DEVICE_DECODER = 1,
45 }; 45 };
46 46
47 DeviceType device_type; 47 DeviceType device_type;
48 uint32 num_input_buffers; 48 uint32 num_input_buffers;
49 uint32 input_pixel_format; 49 uint32 input_pixel_format;
50 }; 50 };
51 51
52 interface VideoAcceleratorService { 52 interface VideoAcceleratorService {
53 Initialize@0(ArcVideoAcceleratorConfig config) => (bool result); 53 enum Result {
54 SUCCESS = 0,
55 ILLEGAL_STATE = 1,
56 INVALID_ARGUMENT = 2,
57 UNREADABLE_INPUT = 3,
58 PLATFORM_FAILURE = 4,
59 INSUFFICIENT_RESOURCES = 5,
60 };
61
62 DeprecatedInitialize@0(ArcVideoAcceleratorConfig config) => (bool result);
63
64 [MinVersion=1]
65 Initialize@7(ArcVideoAcceleratorConfig config) => (Result result);
54 66
55 BindSharedMemory@1(PortType port, uint32 index, handle ashmem_fd, 67 BindSharedMemory@1(PortType port, uint32 index, handle ashmem_fd,
56 uint32 offset, uint32 length); 68 uint32 offset, uint32 length);
57 69
58 BindDmabuf@2(PortType port, uint32 index, handle dmabuf_fd, int32 stride); 70 BindDmabuf@2(PortType port, uint32 index, handle dmabuf_fd, int32 stride);
59 71
60 UseBuffer@3(PortType port, uint32 index, BufferMetadata metadata); 72 UseBuffer@3(PortType port, uint32 index, BufferMetadata metadata);
61 73
62 SetNumberOfOutputBuffers@4(uint32 number); 74 SetNumberOfOutputBuffers@4(uint32 number);
63 75
64 Reset@5(); 76 Reset@5();
65 77
66 Flush@6(); 78 Flush@6();
67 }; 79 };
68 80
69 interface VideoAcceleratorServiceClient { 81 interface VideoAcceleratorServiceClient {
70 enum Error {
71 NO_ERROR = 0,
72 ILLEGAL_STATE = 1,
73 INVALID_ARGUMENT = 2,
74 UNREADABLE_INPUT = 3,
75 PLATFORM_FAILURE = 4,
76 };
77
78 Init@0(VideoAcceleratorService service_ptr); 82 Init@0(VideoAcceleratorService service_ptr);
79 83
80 OnError@1(Error error); 84 OnError@1(VideoAcceleratorService.Result error);
81 85
82 OnBufferDone@2(PortType port, uint32 index, BufferMetadata metadata); 86 OnBufferDone@2(PortType port, uint32 index, BufferMetadata metadata);
83 87
84 OnResetDone@3(); 88 OnResetDone@3();
85 89
86 OnOutputFormatChanged@4(VideoFormat format); 90 OnOutputFormatChanged@4(VideoFormat format);
87 91
88 OnFlushDone@5(); 92 OnFlushDone@5();
89 }; 93 };
OLDNEW
« no previous file with comments | « chrome/gpu/gpu_arc_video_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698