comparison src/aac/libfaad2/common.h @ 1188:22a470857579 trunk

- fix the bug that aac plugin had failed to get proper playtime length on AMD64. - fix typedef conflict. uint32_t isn't unsigned long on 64bit machines. - resolve all warnings. - unnecessary code has been removed.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Mon, 18 Jun 2007 21:53:26 +0900
parents b1128efde471
children 5412f8c2ec29
comparison
equal deleted inserted replaced
1187:875baf383f0c 1188:22a470857579
226 # if HAVE_STDINT_H 226 # if HAVE_STDINT_H
227 # include <stdint.h> 227 # include <stdint.h>
228 # else 228 # else
229 /* we need these... */ 229 /* we need these... */
230 typedef unsigned long long uint64_t; 230 typedef unsigned long long uint64_t;
231 typedef unsigned long uint32_t; 231 typedef unsigned int uint32_t;
232 typedef unsigned short uint16_t; 232 typedef unsigned short uint16_t;
233 typedef unsigned char uint8_t; 233 typedef unsigned char uint8_t;
234 typedef long long int64_t; 234 typedef long long int64_t;
235 typedef long int32_t; 235 typedef long int32_t;
236 typedef short int16_t; 236 typedef short int16_t;