diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-25 14:01:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-25 14:01:23 +0000 |
commit | f3c04c1385b23b86dc448f5dd244c4fed1cc2fb6 (patch) | |
tree | 905851b0de4be3253af045bf66e4b0c785f026a0 | |
parent | 6b8b7258e428608a53fd5e516a4781569b18480a (diff) | |
download | ffmpeg-f3c04c1385b23b86dc448f5dd244c4fed1cc2fb6.tar.gz |
Remove redundant av_log2_16bit forward declaration, fixes checkheaders warning:
libavutil/internal.h:167: warning: redundant redeclaration of `av_log2_16bit'
libavutil/common.h:143: warning: previous definition of `av_log2_16bit' was here
Originally committed as revision 16773 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 2010e3008a..c1f849fb3f 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -164,8 +164,6 @@ static inline av_const int FASTDIV(int a, int b) extern const uint8_t ff_sqrt_tab[256]; -static inline int av_log2_16bit(unsigned int v); - static inline av_const unsigned int ff_sqrt(unsigned int a) { unsigned int b; |