summaryrefslogtreecommitdiff
path: root/src/android/camera_ops.cpp
AgeCommit message (Collapse)Author
2020-02-13android: Remove internal threadLaurent Pinchart
Now that libcamera creates threads internally and doesn't rely on an application-provided event loop, remove the thread from the Android Camera HAL layer. The CameraProxy class becomes meaningless, remove it and communicate directly from the CameraHalManager to the CameraDevice. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Jacopo Mondi <jacopo@jmondi.org>
>33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * property_ids.cpp : Property ID list
 *
 * This file is auto-generated. Do not edit.
 */

#include <libcamera/property_ids.h>

/**
 * \file property_ids.h
 * \brief Camera property identifiers
 */

namespace libcamera {

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

${controls_doc}

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

${draft_controls_doc}

} /* namespace draft */

#ifndef __DOXYGEN__
/*
 * Keep the properties 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 properties
 */
extern const ControlIdMap properties {
${controls_map}
};

} /* namespace properties */

} /* namespace libcamera */