* ImageFormat: * A Data Structure to communicate resolution between camera and ImageReader */
| 24 | * A Data Structure to communicate resolution between camera and ImageReader |
| 25 | */ |
| 26 | struct ImageFormat { |
| 27 | int32_t width; |
| 28 | int32_t height; |
| 29 | |
| 30 | int32_t format; // Through out this demo, the format is fixed to |
| 31 | // YUV_420 format |
| 32 | }; |
| 33 | |
| 34 | class ImageReader { |
| 35 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected