Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENT_ARC_VIDEO_ACCELERATOR_VIDEO_ACCELERATOR_H_ | |
| 6 #define COMPONENT_ARC_VIDEO_ACCELERATOR_VIDEO_ACCELERATOR_H_ | |
| 7 | |
| 8 namespace arc { | |
| 9 | |
| 10 struct ArcVideoAcceleratorDmabufPlane { | |
| 11 int32_t offset; // in bytes | |
|
dcheng
2016/12/01 01:30:50
Perhaps note in a comment why these are signed des
yoshiki
2016/12/02 08:31:43
Powel, could you answer this question?
Pawel Osciak
2016/12/06 07:08:38
They are signed because client APIs use ints for t
yoshiki
2016/12/06 16:48:33
Ok. Let me keep as-is.
| |
| 12 int32_t stride; // in bytes | |
| 13 }; | |
| 14 | |
| 15 } // namespace arc | |
| 16 | |
| 17 #endif // COMPONENT_ARC_VIDEO_ACCELERATOR_VIDEO_ACCELERATOR_H_ | |
| OLD | NEW |