diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:35:48 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:35:48 +0000 |
commit | 0c1a9edad463bd6e22b30c19b700b099c7093fc1 (patch) | |
tree | d16ccbe29c8dbfc2cdc4e92cac31b22c181ed940 /tests/videogen.c | |
parent | 4596673c062e3834b6d31d1e8e210b64d74ce26b (diff) | |
download | ffmpeg-0c1a9edad463bd6e22b30c19b700b099c7093fc1.tar.gz |
* UINTX -> uintx_t INTX -> intx_t
Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/videogen.c')
-rw-r--r-- | tests/videogen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/videogen.c b/tests/videogen.c index 3de8274c88..5f4ae3c0fa 100644 --- a/tests/videogen.c +++ b/tests/videogen.c @@ -8,14 +8,14 @@ #define SCALEBITS 8 #define ONE_HALF (1 << (SCALEBITS - 1)) #define FIX(x) ((int) ((x) * (1L<<SCALEBITS) + 0.5)) -typedef unsigned char UINT8; +typedef unsigned char uint8_t; -static void rgb24_to_yuv420p(UINT8 *lum, UINT8 *cb, UINT8 *cr, - UINT8 *src, int width, int height) +static void rgb24_to_yuv420p(uint8_t *lum, uint8_t *cb, uint8_t *cr, + uint8_t *src, int width, int height) { int wrap, wrap3, x, y; int r, g, b, r1, g1, b1; - UINT8 *p; + uint8_t *p; wrap = width; wrap3 = width * 3; |