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

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

Issue 1953683002: Add stride for imported Dmabuf in ArcVideoAccelerator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kcwu's comments Created 4 years, 7 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 // 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 uint32 num_input_buffers; 54 uint32 num_input_buffers;
55 uint32 input_pixel_format; 55 uint32 input_pixel_format;
56 }; 56 };
57 57
58 interface VideoAcceleratorService { 58 interface VideoAcceleratorService {
59 Initialize@0(ArcVideoAcceleratorConfig config) => (bool result); 59 Initialize@0(ArcVideoAcceleratorConfig config) => (bool result);
60 60
61 BindSharedMemory@1(PortType port, uint32 index, handle ashmem_fd, 61 BindSharedMemory@1(PortType port, uint32 index, handle ashmem_fd,
62 uint32 offset, uint32 length); 62 uint32 offset, uint32 length);
63 63
64 BindDmabuf@2(PortType port, uint32 index, handle dmabuf_fd); 64 BindDmabuf@2(PortType port, uint32 index, handle dmabuf_fd, int32 stride);
dcheng 2016/05/07 06:22:56 Why int32 and not uint32?
Owen Lin 2016/05/09 07:30:16 It is int32_t in where it's used: https://code.goo
65 65
66 UseBuffer@3(PortType port, uint32 index, BufferMetadata metadata); 66 UseBuffer@3(PortType port, uint32 index, BufferMetadata metadata);
67 67
68 SetNumberOfOutputBuffers@4(uint32 number); 68 SetNumberOfOutputBuffers@4(uint32 number);
69 69
70 Reset@5(); 70 Reset@5();
71 }; 71 };
72 72
73 interface VideoAcceleratorServiceClient { 73 interface VideoAcceleratorServiceClient {
74 enum Error { 74 enum Error {
75 NO_ERROR = 0, 75 NO_ERROR = 0,
76 ILLEGAL_STATE = 1, 76 ILLEGAL_STATE = 1,
77 INVALID_ARGUMENT = 2, 77 INVALID_ARGUMENT = 2,
78 UNREADABLE_INPUT = 3, 78 UNREADABLE_INPUT = 3,
79 PLATFORM_FAILURE = 4, 79 PLATFORM_FAILURE = 4,
80 }; 80 };
81 81
82 Init@0(VideoAcceleratorService service_ptr); 82 Init@0(VideoAcceleratorService service_ptr);
83 83
84 OnError@1(Error error); 84 OnError@1(Error error);
85 85
86 OnBufferDone@2(PortType port, uint32 index, BufferMetadata metadata); 86 OnBufferDone@2(PortType port, uint32 index, BufferMetadata metadata);
87 87
88 OnResetDone@3(); 88 OnResetDone@3();
89 89
90 OnOutputFormatChanged@4(VideoFormat format); 90 OnOutputFormatChanged@4(VideoFormat format);
91 }; 91 };
OLDNEW
« chrome/gpu/arc_gpu_video_decode_accelerator.cc ('K') | « 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