Browse Source

Don't include byteswap.h anymore.

Originally committed as revision 15603 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Carl Eugen Hoyos 17 years ago
parent
commit
89493e10ef
2 changed files with 0 additions and 11 deletions
  1. +0
    -5
      configure
  2. +0
    -6
      libavutil/bswap.h

+ 0
- 5
configure View File

@@ -763,7 +763,6 @@ HAVE_LIST="
altivec_h altivec_h
arpa_inet_h arpa_inet_h
bswap bswap
byteswap_h
closesocket closesocket
cmov cmov
conio_h conio_h
@@ -870,9 +869,6 @@ neon_deps="armv4l"
ssse3_deps="x86" ssse3_deps="x86"
vis_deps="sparc" vis_deps="sparc"


# system headers and functions
byteswap_h_deps="!armv4l"

# decoders / encoders # decoders / encoders
ac3_decoder_deps="gpl" ac3_decoder_deps="gpl"
dxa_decoder_deps="zlib" dxa_decoder_deps="zlib"
@@ -1673,7 +1669,6 @@ check_func memalign
check_func mkstemp check_func mkstemp
check_func_headers windows.h GetProcessTimes check_func_headers windows.h GetProcessTimes


check_header byteswap.h
check_header conio.h check_header conio.h
check_header dlfcn.h check_header dlfcn.h
check_header malloc.h check_header malloc.h


+ 0
- 6
libavutil/bswap.h View File

@@ -30,10 +30,6 @@
#include "config.h" #include "config.h"
#include "common.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) static av_always_inline av_const uint16_t bswap_16(uint16_t x)
{ {
#if defined(ARCH_X86) #if defined(ARCH_X86)
@@ -108,8 +104,6 @@ static inline uint64_t av_const bswap_64(uint64_t x)
#endif #endif
} }


#endif /* !HAVE_BYTESWAP_H */

// be2me ... BigEndian to MachineEndian // be2me ... BigEndian to MachineEndian
// le2me ... LittleEndian to MachineEndian // le2me ... LittleEndian to MachineEndian




Loading…
Cancel
Save