diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-21 13:29:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-21 13:35:42 +0200 |
commit | dcbff35199e1596d9d1200e734ef4a4c306e50f1 (patch) | |
tree | e173e3208ed6a79a0648e4324c3cc398b7d176ca /libavutil/log2.c | |
parent | 05f228b0a01e8b97ba73a15c1eccb6b0a9060633 (diff) | |
parent | d15c21e5fa3961f10026da1a3080a3aa3cf4cec9 (diff) | |
download | ffmpeg-dcbff35199e1596d9d1200e734ef4a4c306e50f1.tar.gz |
Merge commit 'd15c21e5fa3961f10026da1a3080a3aa3cf4cec9'
* commit 'd15c21e5fa3961f10026da1a3080a3aa3cf4cec9':
avutil: Add a copy of ff_sqrt_tab back into avutil to restore ABI compatibility
avutil: make some tables visible again
avutil: remove inline av_log2 from public API
celp_math: rename ff_log2 to ff_log2_q15
Conflicts:
libavutil/libavutil.v
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/log2.c')
-rw-r--r-- | libavutil/log2.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libavutil/log2.c b/libavutil/log2.c new file mode 100644 index 0000000000..b0c00e1cad --- /dev/null +++ b/libavutil/log2.c @@ -0,0 +1,34 @@ +/* + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "intmath.h" + +/* undef these to get the function prototypes from common.h */ +#undef av_log2 +#undef av_log2_16bit +#include "common.h" + +int av_log2(unsigned v) +{ + return ff_log2(v); +} + +int av_log2_16bit(unsigned v) +{ + return ff_log2_16bit(v); +} |