.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Standard image size definitions |
---|
3 | 4 | * |
---|
4 | 5 | * 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 | 6 | */ |
---|
10 | 7 | #ifndef _IMAGE_SIZES_H |
---|
11 | 8 | #define _IMAGE_SIZES_H |
---|
.. | .. |
---|
13 | 10 | #define CIF_WIDTH 352 |
---|
14 | 11 | #define CIF_HEIGHT 288 |
---|
15 | 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 | + |
---|
16 | 19 | #define QCIF_WIDTH 176 |
---|
17 | 20 | #define QCIF_HEIGHT 144 |
---|
18 | 21 | |
---|