comparison bswap.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 05c01c4c1ca9
children 4b2cd7e98d58
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
21 /** 21 /**
22 * @file bswap.h 22 * @file bswap.h
23 * byte swap. 23 * byte swap.
24 */ 24 */
25 25
26 #ifndef BSWAP_H 26 #ifndef FFMPEG_BSWAP_H
27 #define BSWAP_H 27 #define FFMPEG_BSWAP_H
28 28
29 #include <stdint.h> 29 #include <stdint.h>
30 #include "common.h" 30 #include "common.h"
31 31
32 #ifdef HAVE_BYTESWAP_H 32 #ifdef HAVE_BYTESWAP_H
136 #define le2me_16(x) (x) 136 #define le2me_16(x) (x)
137 #define le2me_32(x) (x) 137 #define le2me_32(x) (x)
138 #define le2me_64(x) (x) 138 #define le2me_64(x) (x)
139 #endif 139 #endif
140 140
141 #endif /* BSWAP_H */ 141 #endif /* FFMPEG_BSWAP_H */