summaryrefslogtreecommitdiff
path: root/src/ipa/libipa/agc_mean_luminance.cpp
diff options
context:
space:
mode:
authorDavid Plowman <david.plowman@raspberrypi.com>2024-06-06 11:15:07 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2024-06-13 10:13:33 +0100
commitd13542c28f291b88e29f1142d6dff565e772a05c (patch)
tree5cc8f6b666c21bc9cebf56dbf9de36655b88dbed /src/ipa/libipa/agc_mean_luminance.cpp
parent634bc7838f879c208df1915b2259e2a7f8dcefd7 (diff)
utils: raspberrypi: ctt: Adapt tuning tool for both VC4 and PiSP
The old ctt.py and alsc_only.py scripts are removed. Instead of ctt.py use ctt_vc4.py or ctt_pisp.py, depending on your target p/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2019, Google Inc. * * event-dispatcher.cpp - Event dispatcher test */ #include <chrono> #include <iostream> Diffstat (limited to 'src/ipa/libipa/agc_mean_luminance.cpp')
0 files changed, 0 insertions, 0 deletions
n> std::chrono_literals; 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;