diff options
author | Francesco Lavra <francescolavra@interfree.it> | 2009-11-09 09:11:35 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-11-09 09:11:35 +0000 |
commit | 91cc5d37679b112d03c20d053905c3941c0a8992 (patch) | |
tree | 63de7240f7f22da61839db5cc9d50cc22562a59a /libavutil/common.h | |
parent | 66ddc150f0231889f9a05f71739ff1a40db9a01d (diff) | |
download | ffmpeg-91cc5d37679b112d03c20d053905c3941c0a8992.tar.gz |
Move ff_reverse in libavcodec to av_reverse in libavutil.
Patch by Francesco Lavra, francescolavra interfree it
Originally committed as revision 20484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index a6303d9872..a8a9bd39e6 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -136,6 +136,8 @@ /* misc math functions */ extern const uint8_t ff_log2_tab[256]; +extern const uint8_t av_reverse[256]; + static inline av_const int av_log2(unsigned int v) { int n = 0; |