summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2022-06-08 10:24:17 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-06-08 20:16:21 +0300
commitd6cfb080604a69454837fc95a041c69a1759c1cb (patch)
treece8bbc41a4c166fcd260486e28d2d854285c8f37 /src/ipa/raspberrypi/controller
parentab21acb9c0efa4bef944c17ef3ac3ed8550a81d1 (diff)
py: examples: Add simple-continuous-capture.py
Add a slightly more complex, and I think a more realistic, example, where the script reacts to events and re-queues the buffers. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/ipa/raspberrypi/controller')
0 files changed, 0 insertions, 0 deletions
6 57 58 59 60 61 62
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * control_ids.cpp : Control ID list
 *
 * This file is auto-generated. Do not edit.
 */

#include <libcamera/control_ids.h>
#include <libcamera/controls.h>

/**
 * \file control_ids.h
 * \brief Camera control identifiers
 */

namespace libcamera {

/**
 * \brief Namespace for libcamera controls
 */
namespace controls {

${controls_doc}

/**
 * \brief Namespace for libcamera draft controls
 */
namespace draft {

${draft_controls_doc}

} /* namespace draft */

#ifndef __DOXYGEN__
/*
 * Keep the controls definitions hidden from doxygen as it incorrectly parses
 * them as functions.
 */
${controls_def}

namespace draft {

${draft_controls_def}

} /* namespace draft */
#endif

/**
 * \brief List of all supported libcamera controls
 *
 * Unless otherwise stated, all controls are bi-directional, i.e. they can be
 * set through Request::controls() and returned out through Request::metadata().
 */
extern const ControlIdMap controls {
${controls_map}
};

} /* namespace controls */

} /* namespace libcamera */