Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.5-rc2 40 lines 718 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Standard image size definitions 4 * 5 * Copyright (C) 2013, Sylwester Nawrocki <sylvester.nawrocki@gmail.com> 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 QCIF_WIDTH 176 14#define QCIF_HEIGHT 144 15 16#define QQCIF_WIDTH 88 17#define QQCIF_HEIGHT 72 18 19#define QQVGA_WIDTH 160 20#define QQVGA_HEIGHT 120 21 22#define QVGA_WIDTH 320 23#define QVGA_HEIGHT 240 24 25#define SVGA_WIDTH 800 26#define SVGA_HEIGHT 600 27 28#define SXGA_WIDTH 1280 29#define SXGA_HEIGHT 1024 30 31#define VGA_WIDTH 640 32#define VGA_HEIGHT 480 33 34#define UXGA_WIDTH 1600 35#define UXGA_HEIGHT 1200 36 37#define XGA_WIDTH 1024 38#define XGA_HEIGHT 768 39 40#endif /* _IMAGE_SIZES_H */