Make the geometry header public so it can be used by the API facing applications. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23 lines
423 B
C++
23 lines
423 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* formats.h - Libcamera image formats
|
|
*/
|
|
|
|
#ifndef __LIBCAMERA_FORMATS_H__
|
|
#define __LIBCAMERA_FORMATS_H__
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include <libcamera/geometry.h>
|
|
|
|
namespace libcamera {
|
|
|
|
typedef std::map<unsigned int, std::vector<SizeRange>> FormatEnum;
|
|
|
|
} /* namespace libcamera */
|
|
|
|
#endif /* __LIBCAMERA_FORMATS_H__ */
|