Files
external_libcamera/include/libcamera/ipa/rkisp1.h
Laurent Pinchart 3fe0edc989 ipa: Skip doxygen parsing for pipeline-specific IPA headers
The pipeline-specific IPA headers are not part of the libcamera API,
they should thus be skipped when generating documentation. doxygen
doesn't complain currently due to the fact that types defined in those
headers are part of undocumented namespaces. In preparation for
documenting the libcamera namespace, make sure the headers don't get
parsed by doxygen.

Only vimc.h needs a header guard, as rkisp1.h uses the global namespace
and raspberrypi.h uses the undocumented libcamera::RPi namespace,
neither of which cause issues. Still, for consistency, add header guards
to all headers.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-10-20 13:19:45 +03:00

23 lines
554 B
C

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* rkisp1.h - Image Processing Algorithm interface for RkISP1
*/
#ifndef __LIBCAMERA_IPA_INTERFACE_RKISP1_H__
#define __LIBCAMERA_IPA_INTERFACE_RKISP1_H__
#ifndef __DOXYGEN__
enum RkISP1Operations {
RKISP1_IPA_ACTION_V4L2_SET = 1,
RKISP1_IPA_ACTION_PARAM_FILLED = 2,
RKISP1_IPA_ACTION_METADATA = 3,
RKISP1_IPA_EVENT_SIGNAL_STAT_BUFFER = 4,
RKISP1_IPA_EVENT_QUEUE_REQUEST = 5,
};
#endif /* __DOXYGEN__ */
#endif /* __LIBCAMERA_IPA_INTERFACE_RKISP1_H__ */