Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/media/v4l2-image-sizes.h
26282 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* Standard image size definitions
4
*
5
* Copyright (C) 2013, Sylwester Nawrocki <[email protected]>
6
*/
7
#ifndef _IMAGE_SIZES_H
8
#define _IMAGE_SIZES_H
9
10
#define CIF_WIDTH 352
11
#define CIF_HEIGHT 288
12
13
#define HD_720_WIDTH 1280
14
#define HD_720_HEIGHT 720
15
16
#define HD_1080_WIDTH 1920
17
#define HD_1080_HEIGHT 1080
18
19
#define QCIF_WIDTH 176
20
#define QCIF_HEIGHT 144
21
22
#define QQCIF_WIDTH 88
23
#define QQCIF_HEIGHT 72
24
25
#define QQVGA_WIDTH 160
26
#define QQVGA_HEIGHT 120
27
28
#define QVGA_WIDTH 320
29
#define QVGA_HEIGHT 240
30
31
#define SVGA_WIDTH 800
32
#define SVGA_HEIGHT 600
33
34
#define SXGA_WIDTH 1280
35
#define SXGA_HEIGHT 1024
36
37
#define VGA_WIDTH 640
38
#define VGA_HEIGHT 480
39
40
#define UXGA_WIDTH 1600
41
#define UXGA_HEIGHT 1200
42
43
#define XGA_WIDTH 1024
44
#define XGA_HEIGHT 768
45
46
#endif /* _IMAGE_SIZES_H */
47
48