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

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 posciak'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
« no previous file with comments | « components/arc/common/video.mojom ('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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 Initialize@0(ArcVideoAcceleratorConfig config) => (bool result);
54 54
55 BindSharedMemory@1(PortType port, uint32 index, handle ashmem_fd, 55 BindSharedMemory@1(PortType port, uint32 index, handle ashmem_fd,
56 uint32 offset, uint32 length); 56 uint32 offset, uint32 length);
57 57
58 BindDmabuf@2(PortType port, uint32 index, handle dmabuf_fd); 58 BindDmabuf@2(PortType port, uint32 index, handle dmabuf_fd, int32 stride);
59 59
60 UseBuffer@3(PortType port, uint32 index, BufferMetadata metadata); 60 UseBuffer@3(PortType port, uint32 index, BufferMetadata metadata);
61 61
62 SetNumberOfOutputBuffers@4(uint32 number); 62 SetNumberOfOutputBuffers@4(uint32 number);
63 63
64 Reset@5(); 64 Reset@5();
65 65
66 Flush@6(); 66 Flush@6();
67 }; 67 };
68 68
(...skipping 11 matching lines...) Expand all
80 OnError@1(Error error); 80 OnError@1(Error error);
81 81
82 OnBufferDone@2(PortType port, uint32 index, BufferMetadata metadata); 82 OnBufferDone@2(PortType port, uint32 index, BufferMetadata metadata);
83 83
84 OnResetDone@3(); 84 OnResetDone@3();
85 85
86 OnOutputFormatChanged@4(VideoFormat format); 86 OnOutputFormatChanged@4(VideoFormat format);
87 87
88 OnFlushDone@5(); 88 OnFlushDone@5();
89 }; 89 };
OLDNEW
« no previous file with comments | « components/arc/common/video.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698