diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-27 09:17:21 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-27 09:17:21 +0000 |
commit | 8758f7e43c484826c5ed47dcb717b46692383ee8 (patch) | |
tree | 19eb5c093a023b068791ba2a453567fd7a638b12 | |
parent | 6fea8454acff29735ea46184cb183ca6ff42e514 (diff) | |
download | ffmpeg-8758f7e43c484826c5ed47dcb717b46692383ee8.tar.gz |
* for this moment bswap.h included ahead of HAVE_AV_CONFIG_H check
as its functionality is used even in those parts which are being
compiled without this flag
- generaly this would require more complicated cleanup patch
- for now leaving for the main author
Originally committed as revision 614 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index 02a7c10492..3f38901b00 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -111,11 +111,10 @@ typedef signed long long INT64; #endif /* !CONFIG_WIN32 */ +#include "bswap.h" #ifdef HAVE_AV_CONFIG_H -#include "bswap.h" - #if defined(__MINGW32__) || defined(__CYGWIN__) || \ defined(__OS2__) || defined (__OpenBSD__) #define MANGLE(a) "_" #a |