diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-25 14:00:21 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-25 14:00:21 +0000 |
commit | 6b8b7258e428608a53fd5e516a4781569b18480a (patch) | |
tree | c86a2e83d42e11140048d30126692e5a78cb1b0b /libavutil/common.h | |
parent | bd53b426b70b624dd9b89e32c5449e176254deaa (diff) | |
download | ffmpeg-6b8b7258e428608a53fd5e516a4781569b18480a.tar.gz |
Move internal.h #include to the end of the file so that it is after
the declaration of av_log2_16bit, which it uses.
Originally committed as revision 16772 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index f701d233ca..7c8c66b0c6 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -83,10 +83,6 @@ #endif #endif -#ifdef HAVE_AV_CONFIG_H -# include "internal.h" -#endif /* HAVE_AV_CONFIG_H */ - #ifndef attribute_deprecated #if AV_GCC_VERSION_AT_LEAST(3,1) # define attribute_deprecated __attribute__((deprecated)) @@ -268,4 +264,8 @@ static inline av_const float av_clipf(float a, float amin, float amax) }\ } +#ifdef HAVE_AV_CONFIG_H +# include "internal.h" +#endif /* HAVE_AV_CONFIG_H */ + #endif /* AVUTIL_COMMON_H */ |