| 368 | } |
| 369 | |
| 370 | u32 get_video_buffer_size(const CellCameraInfoEx& info) |
| 371 | { |
| 372 | u32 width, height; |
| 373 | std::tie(width, height) = get_video_resolution(info); |
| 374 | return get_buffer_size_by_format(info.format, width, height); |
| 375 | } |
| 376 | |
| 377 | // ************************ |
| 378 | // * cellCamera functions * |
no test coverage detected