blob: 5fcfb11318e749d1ba97e2ec6c063548b657b0eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* 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 "geometry.h"
namespace libcamera {
typedef std::map<unsigned int, std::vector<SizeRange>> FormatEnum;
} /* namespace libcamera */
#endif /* __LIBCAMERA_FORMATS_H__ */
|