summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-06-04ipa: rpi: Disable StatsOutputEnable control by defaultNaushir Patuck
2024-06-04libcamera: software_isp: Allow using dma-buffers from /dev/udmabufHans de Goede
2024-06-04libcamera: DmaBufAllocator: Support allocating from /dev/udmabufHans de Goede
2024-06-04libcamera: Rename DmaHeap class to DmaBufAllocatorHans de Goede
2024-06-03/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2019, Google Inc. * * libcamera V4L2 device format handling test */ #include <iostream> #include <limits.h> #include "libcamera/internal/utils.h" #include "libcamera/internal/v4l2_videodevice.h" #include "v4l2_videodevice_test.h" using namespace std; using namespace libcamera; class Format : public V4L2VideoDeviceTest { public: Format() : V4L2VideoDeviceTest("vimc", "Raw Capture 0") {} protected: int run() { V4L2DeviceFormat format = {}; int ret = capture_->getFormat(&format); if (ret) { cerr << "Failed to get format" << endl; return TestFail; } format.size = { UINT_MAX, UINT_MAX }; ret = capture_->setFormat(&format); if (ret) { cerr << "Failed to set form2024-06-02 02:00:08 +0300'>2024-06-02libcamera: software_isp: Remove TODO about internal representationMilan Zamazal
2024-06-02libcamera: software_isp: Remove DebayerParams::kGain10Milan Zamazal
2024-06-02libcamera: software_isp: Move color mappings out of debayeringMilan Zamazal
2024-06-02libcamera: software_isp: Honor black level in AWBMilan Zamazal
2024-06-02libcamera: software_isp: Use a specific integer type for black levelMilan Zamazal
2024-05-31utils: checkstyle.py: Show location of coding style issue within lineLaurent Pinchart
2024-05-31utils: checkstyle.py: Add a check for hex valuesLaurent Pinchart
2024-05-31utils: checkstyle.py: Extend IncludeChecker to cover math.hLaurent Pinchart
2024-05-31utils: checkstyle.py: Refactor IncludeCheckerLaurent Pinchart
2024-05-31test: ipa: rkisp1-utils: Fix capitalization of hex numbersPaul Elder
2024-05-31ipa: rkisp1: Add a helper to convert floating-point to fixed-pointPaul Elder
2024-05-27android: camera_capabilities: Fix GCC 14 warningBarnabás Pőcze
2024-05-27ipa: rpi: Make monoSensor() accessor constLaurent Pinchart
2024-05-21libcamera: yaml_parser: Avoid double lookup in `operator[]`Barnabás Pőcze
2024-05-21treewide: Query list of cameras just onceBarnabás Pőcze
2024-05-19libcamera v0.3.0Kieran Bingham
2024-05-16ipa: rpi: Add accessor function for monoSensor_Naushir Patuck
2024-05-16ipa: rpi: Add HDR supportNaushir Patuck
2024-05-16libcamera: v4l2_subdevice: Add missing MEDIA_BUS_FMT_xxxx16_1X16 infoNaushir Patuck
2024-05-16libcamera: formats: Add PiSP specific image and config buffer formatsNaushir Patuck
2024-05-16include: linux: Add PiSP specific image and config buffer formatsNaushir Patuck
2024-05-16libcamera: formats: Add RGB48 formatsNaushir Patuck
2024-05-16include: linux: Add RGB48 formatsNaushir Patuck
2024-05-14libcamera: camera_manager: Add environment variable to order pipelines matchJulien Vuillaumier
2024-05-14libcamera: pipeline: Add a get factory by name helperJulien Vuillaumier
2024-05-14libcamera: pipeline: Rename pipelines to a shorter nameJulien Vuillaumier
2024-05-14gstreamer: Use copied camera nameBarnabás Pőcze
2024-05-14gstreamer: Fix string memory leakBarnabás Pőcze
2024-05-14Documentation: Add option to treat Doxygen warnings as errorsLaurent Pinchart
2024-05-13test: gstreamer: Simplify single stream testNicolas Dufresne
2024-05-13ipa: libipa: histogram: Fix documentation of constructorLaurent Pinchart
2024-05-09libcamera: Drop remaining file name from header comment blocksLaurent Pinchart
2024-05-09libcamera: Drop file name from header comment blocks in templatesLaurent Pinchart
2024-05-09ipa: rkisp1: agc: Fix histogram constructionPaul Elder
2024-05-09ipa: rpi: Fix for incorrectly reported max shutter speedNaushir Patuck
2024-05-09pipeline: rpi: Avoid duplicating size range for the same pixel formatDavid Plowman