blob: a07d7a683bd9c542e601ca1fa2ac38c4bfeeb07a [file] [log] [blame]
Sylwester Nawrockiaf9bb332012-12-20 15:03:14 -03001/*
2 * Standard image size definitions
3 *
4 * Copyright (C) 2013, Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef _IMAGE_SIZES_H
11#define _IMAGE_SIZES_H
12
13#define CIF_WIDTH 352
14#define CIF_HEIGHT 288
15
16#define QCIF_WIDTH 176
17#define QCIF_HEIGHT 144
18
19#define QQCIF_WIDTH 88
20#define QQCIF_HEIGHT 72
21
22#define QQVGA_WIDTH 160
23#define QQVGA_HEIGHT 120
24
25#define QVGA_WIDTH 320
26#define QVGA_HEIGHT 240
27
Josh Wu1cc6adf2014-11-25 05:54:27 -030028#define SVGA_WIDTH 800
Josh Wu91d63152014-11-27 00:15:01 -030029#define SVGA_HEIGHT 600
Josh Wu1cc6adf2014-11-25 05:54:27 -030030
Sylwester Nawrockiaf9bb332012-12-20 15:03:14 -030031#define SXGA_WIDTH 1280
32#define SXGA_HEIGHT 1024
33
34#define VGA_WIDTH 640
35#define VGA_HEIGHT 480
36
Josh Wu1cc6adf2014-11-25 05:54:27 -030037#define UXGA_WIDTH 1600
38#define UXGA_HEIGHT 1200
39
40#define XGA_WIDTH 1024
41#define XGA_HEIGHT 768
42
Sylwester Nawrockiaf9bb332012-12-20 15:03:14 -030043#endif /* _IMAGE_SIZES_H */