summaryrefslogtreecommitdiff
path: root/test/file.cpp
AgeCommit message (Expand)Author
2021-12-01test: Replace "/proc/self/exe" with path to test binaryLaurent Pinchart
2021-08-03libcamera: file: Turn MapFlag and OpenModeFlag into enum classLaurent Pinchart
2021-06-25libcamera/base: Move File to base libraryKieran Bingham
2020-12-30test: file: Check that directories are not treated as filesKieran Bingham
2020-07-15test: file: Add file creation testLaurent Pinchart
2020-07-15test: file: Add read/write testsLaurent Pinchart
2020-06-02test: Fixed the compilation issueMadhavan Krishnan
2020-05-16libcamera: Move internal headers to include/libcamera/internal/Laurent Pinchart
2020-04-14test: Add File class testsLaurent Pinchart
hl com"> * * ipa_context.h - RkISP1 IPA Context * */ #pragma once #include <linux/rkisp1-config.h> #include <libcamera/base/utils.h> #include <libcamera/geometry.h> namespace libcamera { namespace ipa::rkisp1 { struct IPASessionConfiguration { struct { utils::Duration minShutterSpeed; utils::Duration maxShutterSpeed; double minAnalogueGain; double maxAnalogueGain; struct rkisp1_cif_isp_window measureWindow; } agc; struct { struct rkisp1_cif_isp_window measureWindow; } awb; struct { utils::Duration lineDuration; } sensor; struct { rkisp1_cif_isp_version revision; } hw; }; struct IPAFrameContext { struct { uint32_t exposure; double gain; } agc; struct { struct { double red; double green; double blue; } gains; double temperatureK; } awb; struct { uint32_t exposure; double gain; } sensor; unsigned int frameCount; }; struct IPAContext { IPASessionConfiguration configuration; IPAFrameContext frameContext; }; } /* namespace ipa::rkisp1 */ } /* namespace libcamera*/