-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sylwester Nawrocki
authored and
Mauro Carvalho Chehab
committed
Feb 5, 2013
1 parent
87467c8
commit 426eceb
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f1927479554bf19d2ac54c4b1a38538e54e1881b | ||
refs/heads/master: af9bb33aa33d4beb5d0ac505d48530a56856f66c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Standard image size definitions | ||
* | ||
* Copyright (C) 2013, Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
#ifndef _IMAGE_SIZES_H | ||
#define _IMAGE_SIZES_H | ||
|
||
#define CIF_WIDTH 352 | ||
#define CIF_HEIGHT 288 | ||
|
||
#define QCIF_WIDTH 176 | ||
#define QCIF_HEIGHT 144 | ||
|
||
#define QQCIF_WIDTH 88 | ||
#define QQCIF_HEIGHT 72 | ||
|
||
#define QQVGA_WIDTH 160 | ||
#define QQVGA_HEIGHT 120 | ||
|
||
#define QVGA_WIDTH 320 | ||
#define QVGA_HEIGHT 240 | ||
|
||
#define SXGA_WIDTH 1280 | ||
#define SXGA_HEIGHT 1024 | ||
|
||
#define VGA_WIDTH 640 | ||
#define VGA_HEIGHT 480 | ||
|
||
#endif /* _IMAGE_SIZES_H */ |