diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-07 17:27:43 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-07 17:27:43 +0000 |
commit | a955b5965825631986ba854d007d4e934e466c7d (patch) | |
tree | e1e1b025d9a11bd281779a8c877e892e93246108 /libavutil/intmath.h | |
parent | 2e874c77041773ff95286c1f31a7696c786d12eb (diff) | |
download | ffmpeg-a955b5965825631986ba854d007d4e934e466c7d.tar.gz |
Remove macro duplication between common.h and intmath.h
Originally committed as revision 24086 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/intmath.h')
-rw-r--r-- | libavutil/intmath.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavutil/intmath.h b/libavutil/intmath.h index 7ba3afb913..8b400ef054 100644 --- a/libavutil/intmath.h +++ b/libavutil/intmath.h @@ -52,22 +52,8 @@ extern const uint32_t ff_inverse[257]; # endif #endif /* FASTDIV */ -/* - * Get definition of av_log2_c from common.h. In the event we got - * here through common.h including this file, including it again will - * be a no-op due to multi-inclusion guards, so we must duplicate the - * fallback defines here. - */ - #include "common.h" -#ifndef av_log2 -# define av_log2 av_log2_c -#endif -#ifndef av_log2_16bit -# define av_log2_16bit av_log2_16bit_c -#endif - extern const uint8_t ff_sqrt_tab[256]; static inline av_const unsigned int ff_sqrt(unsigned int a) |