summaryrefslogtreecommitdiff
path: root/libavcodec/celp_math.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-10-18 17:59:13 +0100
committerMans Rullgard <mans@mansr.com>2012-10-20 12:28:45 +0100
commitf0c07be6491c850f948e2029f27f06437d128f3a (patch)
treeba12184ed220cb5591293c368f81989c27e115ca /libavcodec/celp_math.c
parent79042ab37619a234d5fe0f680885a392e966ea6b (diff)
celp_math: rename ff_log2 to ff_log2_q15
This name is more descriptive as the function returns a fixed-point value with 15 fraction bits. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/celp_math.c')
-rw-r--r--libavcodec/celp_math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/celp_math.c b/libavcodec/celp_math.c
index c3d12e982e..a9ebef697c 100644
--- a/libavcodec/celp_math.c
+++ b/libavcodec/celp_math.c
@@ -67,7 +67,7 @@ static const uint16_t tab_log2[33] =
26457, 27294, 28116, 28924, 29719, 30500, 31269, 32025, 32769,
};
-int ff_log2(uint32_t value)
+int ff_log2_q15(uint32_t value)
{
uint8_t power_int;
uint8_t frac_x0;