diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-10-12 19:50:24 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-10-12 19:50:24 +0000 |
commit | 89493e10efe5f41f780f63f2b2d14964862d4d3a (patch) | |
tree | 731f99329e720e0f1fc3615e5ddbe0a3a124cbcc /libavutil/bswap.h | |
parent | c5f67c15598131816d9f2422a213bd7a2ed6b963 (diff) | |
download | ffmpeg-89493e10efe5f41f780f63f2b2d14964862d4d3a.tar.gz |
Don't include byteswap.h anymore.
Originally committed as revision 15603 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/bswap.h')
-rw-r--r-- | libavutil/bswap.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavutil/bswap.h b/libavutil/bswap.h index 86a2492a20..18fa594f94 100644 --- a/libavutil/bswap.h +++ b/libavutil/bswap.h @@ -30,10 +30,6 @@ #include "config.h" #include "common.h" -#ifdef HAVE_BYTESWAP_H -#include <byteswap.h> -#else - static av_always_inline av_const uint16_t bswap_16(uint16_t x) { #if defined(ARCH_X86) @@ -108,8 +104,6 @@ static inline uint64_t av_const bswap_64(uint64_t x) #endif } -#endif /* !HAVE_BYTESWAP_H */ - // be2me ... BigEndian to MachineEndian // le2me ... LittleEndian to MachineEndian |