comparison libmpdemux/aviheader.h @ 21372:1767c271d710

Remove bswap.h, use libavutil/bswap.h instead.
author diego
date Wed, 29 Nov 2006 15:02:45 +0000
parents a5a37cb6858a
children fa99b3d31d13
comparison
equal deleted inserted replaced
21371:2ffcd779b875 21372:1767c271d710
1 #ifndef _aviheader_h 1 #ifndef _aviheader_h
2 #define _aviheader_h 2 #define _aviheader_h
3 3
4 //#include "config.h" /* get correct definition WORDS_BIGENDIAN */ 4 //#include "config.h" /* get correct definition WORDS_BIGENDIAN */
5 #include "bswap.h" 5 #include "libavutil/common.h"
6 #include "libavutil/bswap.h"
6 7
7 #ifndef MIN 8 #ifndef MIN
8 #define MIN(a,b) (((a)<(b))?(a):(b)) 9 #define MIN(a,b) (((a)<(b))?(a):(b))
9 #endif 10 #endif
10 11