view src/aac/mp4ff/mp4ff_int_types.h @ 3137:8c884237cecd

mp4ff_num_samples(): check for track -1, cause that's not a good thing.
author William Pitcock <nenolod@atheme.org>
date Thu, 07 May 2009 11:04:15 -0500
parents 3d6a2732f26a
children
line wrap: on
line source

#ifndef _MP4FF_INT_TYPES_H_
#define _MP4FF_INT_TYPES_H_

#if defined (_WIN32)

#ifdef __MINGW32__
#include <stdlib.h>
#endif /* #ifdef __MINGW32__ */

typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed long int32_t;
typedef unsigned long uint32_t;

typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t;

#else

#include <stdint.h>

#endif


#endif