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 | |
| 12 int32_t stride; // in bytes | |
| 13 }; | |
| 14 } | |
|
Luis Héctor Chávez
2016/11/29 18:25:36
nit: empty line before to preserve symmetry.
Yusuke Sato
2016/11/29 21:34:27
and add '// namespace arc'.
yoshiki
2016/11/30 17:25:44
Done.
| |
| 15 | |
| 16 #endif // COMPONENT_ARC_VIDEO_ACCELERATOR_VIDEO_ACCELERATOR_H_ | |
| OLD | NEW |