Browse Source

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
tags/v0.5
Diego Biurrun 16 years ago
parent
commit
6b8b7258e4
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavutil/common.h

+ 4
- 4
libavutil/common.h View File

@@ -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 */

Loading…
Cancel
Save