Files
external_libcamera/src/libcamera/include/formats.h
Niklas Söderlund 58f1ad3c79 libcamera: Make geometry.h a public header
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>
2019-04-05 21:47:34 +02:00

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__ */