view TOOLS/cygwin_inttypes.h @ 6504:11c0ddb83168

use built-in yvu9->yv12 code, because it requires all src/dst strides and offsets, the params passed to postproc's converter is simply not enough... (temp. solution, waiting for yvu9 support in swscale)
author arpi
date Sat, 22 Jun 2002 23:05:00 +0000
parents 15da29db3ff1
children
line wrap: on
line source

#ifndef _CYGWIN_INTTYPES_H
#define _CYGWIN_INTTYPES_H
#include <sys/types.h>
typedef u_int8_t uint8_t;
typedef u_int16_t uint16_t;
typedef u_int32_t uint32_t;
typedef u_int64_t uint64_t;
#endif