summaryrefslogtreecommitdiff
#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0-or-later # # Copyright (C) 2022, Paul Elder <paul.elder@ideasonboard.com> # # raspberrypi_alsc_only.py - Tuning script for raspberrypi, ALSC only import sys import libtuning as lt from libtuning.parsers import RaspberryPiParser from libtuning.generators import RaspberryPiOutput from raspberrypi.alsc import ALSC tuner = lt.Tuner('Raspberry Pi (ALSC only)') tuner.add(ALSC) tuner.set_input_parser(RaspberryPiParser()) tuner.set_output_formatter(RaspberryPiOutput()) tuner.set_output_order([ALSC]) if __name__ == '__main__': sys.exit(tuner.run(sys.argv))
assLaurent Pinchart 2019-10-15libcamera: controls: Merge ControlInfoMap and V4L2ControlInfoMapLaurent Pinchart 2019-10-15libcamera: v4l2_controls: Replace V4L2ControlInfo with V4L2ControlRangeLaurent Pinchart 2019-10-13libcamera: ipa: Merge controls and v4l2controls in IPAOperationDataLaurent Pinchart 2019-10-13libcamera: v4l2_device: Replace V4L2ControlList with ControlListLaurent Pinchart 2019-10-13libcamera: controls: Support accessing controls by numerical IDLaurent Pinchart 2019-10-13libcamera: controls: Default ControlList validator argument to nullptrLaurent Pinchart 2019-10-11ipa: rkisp1: Avoid unnecessary copyLaurent Pinchart 2019-10-11libcamera: ipa: rkisp1: Add basic control of auto exposureNiklas Söderlund