summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2020-09-10android: camera_device: Fix value of orientation metadataUmang Jain
2020-09-08android: camera_device: Fix spelling in commentJacopo Mondi
2020-09-06libcamera: buffer: Fix MappedBuffer::maps_ documentationUmang Jain
2020-08-29libcamera: media_object: Make MediaLink::setEnabled() account for existing flagsDan Scally
2020-08-28libcamera: raspberrypi: Check dma heap allocatorJacopo Mondi
2020-08-28libcamera: raspberrypi: dmaheaps: Add isValid()Jacopo Mondi
2020-08-28libcamera: raspberrypi: dmaheaps: Improve device openJacopo Mondi
2020-08-27pipeline: raspberrypi: Set sensor default orientation before configure()Naushir Patuck
2020-08-26libcamera: pipeline: vimc: Fix configuration validationLaurent Pinchart
2020-08-25cam: Limit file write to payload sizeLaurent Pinchart
2020-08-25v4l2: camera: Merge getStreamConfig() with open()Laurent Pinchart
2020-08-25v4l2: camera_proxy: Store v4l2_pix_format instead of v4l2_formatLaurent Pinchart
2020-08-25v4l2: camera_proxy: Pass const reference to setFmtFromConfig()Laurent Pinchart
2020-08-25cam: Print timestamp of captured buffersLaurent Pinchart
2020-08-25ipa: raspberrypi: Replace void cast with [[maybe_unused]]Laurent Pinchart
2020-08-25meson: Remove -Wno-unused-parameterLaurent Pinchart
2020-08-25libcamera: Drop explicit construction of std::queueLaurent Pinchart
2020-08-25libcamera: Replace utils::clamp() with std::clamp()Laurent Pinchart
2020-08-25libcamera: Remove void specifier for functions that take no argumentsLaurent Pinchart
2020-08-25libcamera: pipeline: ipu3: Remove stray "imgu." fileLaurent Pinchart
2020-08-24/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2019, Google Inc. * * event-dispatcher.cpp - Event dispatcher test */ #include <chrono> #include <iostream> #include <signal.h> #include <sys/time.h> #include <libcamera/base/event_dispatcher.h> #include <libcamera/base/thread.h> #include <libcamera/base/timer.h> #include "test.h" using namespace std; using namespace libcamera; static EventDispatcher *dispatcher; static bool interrupt; class EventDispatcherTest : public Test { protected: static void sigAlarmHandler(int) { cout << "SIGALARM received" << endl; if (interrupt) dispatcher->interrupt(); } int init() { dispatcher = Thread::current()->eventDispatcher(); struct sigaction sa = {}; sa.sa_handler = &sigAlarmHandler; sigaction(SIGALRM, &sa, nullptr); return 0; } int run() { Timer timer; /* Event processing interruption by signal. */ std::chrono::steady_clock::time_point start = std::chrono::steady_clock::now(); timer.start(1000); struct itimerval itimer = {}; itimer.it_value.tv_usec = 500000; interrupt = false; setitimer(ITIMER_REAL, &itimer, nullptr); dispatcher->processEvents(); 0.4&id=6bc652ee1c4a102f3fe3f321afd6dedf7c233e01'>android: camera_device: Query plane lengthKieran Bingham
2020-08-06android: camera_device: Only construct required planesKieran Bingham
2020-08-06android: camera_device: Report an error in notifyError()Kieran Bingham
2020-08-06android: camera_device: Fix trivial spellingKieran Bingham
2020-08-06libcamera: buffer: Convert copyFrom to use MappedFrameBufferKieran Bingham
2020-08-06libcamera: buffer: Create a MappedBufferKieran Bingham
2020-08-06libcamera: formats: add numPlanes helperKieran Bingham
2020-08-06libcamera: buffer: Correct FrameBuffer referencesKieran Bingham
2020-08-06android: camera_device: Initialize 'id_' field in constructorUmang Jain
2020-08-06android: camera_ops: Fix a documentation spelling typoUmang Jain
2020-08-06android: camera_hal_manager: Remove unused getStaticMetadata() methodUmang Jain
2020-08-05libcamera: camera_manager: Enforce unique camera IDsNiklas Söderlund
2020-08-05libcamera: camera: Rename name() to id()Niklas Söderlund