summaryrefslogtreecommitdiff
path: root/utils/tuning/libtuning/parsers
AgeCommit message (Expand)Author
2024-07-05libtuning: Implement a minimal yaml parserStefan Klug
2024-05-08libcamera: Drop file name from header comment blocksLaurent Pinchart
2022-11-25utils: libtuning: parsers: Add yaml parserPaul Elder
2022-11-25utils: libtuning: parsers: Add raspberrypi parserPaul Elder
2022-11-25utils: tuning: libtuning: Implement extensible components of libtuningPaul Elder
ties */ #pragma once #include <map> #include <string> #include <libcamera/control_ids.h> #include <libcamera/geometry.h> namespace libcamera { struct CameraSensorProperties { static const CameraSensorProperties *get(const std::string &sensor); Size unitCellSize; std::map<controls::draft::TestPatternModeEnum, int32_t> testPatternModes; }; } /* namespace libcamera */