summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-10-11 17:43:29 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-10-11 18:03:10 -0400
commit93866c2aa2514649622ae32b6cacaf62473a9e20 (patch)
tree052620931788381dc191d3d2bc120eed71468617 /libavutil
parent79f2014f1264aeb9dae3134d3649aba6ca0d4d13 (diff)
intmath: remove av_ctz.
It's a non-installed header and only used in one place (flacenc). Since ff_ctz is static inline, it's fine to use that instead.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/intmath.c5
-rw-r--r--libavutil/intmath.h14
2 files changed, 6 insertions, 13 deletions
diff --git a/libavutil/intmath.c b/libavutil/intmath.c
index 1f725c741f..b0c00e1cad 100644
--- a/libavutil/intmath.c
+++ b/libavutil/intmath.c
@@ -32,8 +32,3 @@ int av_log2_16bit(unsigned v)
{
return ff_log2_16bit(v);
}
-
-int av_ctz(int v)
-{
- return ff_ctz(v);
-}
diff --git a/libavutil/intmath.h b/libavutil/intmath.h
index ec7286a539..802abe32b0 100644
--- a/libavutil/intmath.h
+++ b/libavutil/intmath.h
@@ -122,6 +122,12 @@ static av_always_inline av_const int ff_log2_16bit_c(unsigned int v)
#ifndef ff_ctz
#define ff_ctz ff_ctz_c
+/**
+ * Trailing zero bit count.
+ *
+ * @param v input value. If v is 0, the result is undefined.
+ * @return the number of trailing 0-bits
+ */
#if !defined( _MSC_VER )
static av_always_inline av_const int ff_ctz_c(int v)
{
@@ -178,14 +184,6 @@ static av_always_inline av_const int ff_ctzll_c(long long v)
#endif
/**
- * Trailing zero bit count.
- *
- * @param v input value. If v is 0, the result is undefined.
- * @return the number of trailing 0-bits
- */
-int av_ctz(int v);
-
-/**
* @}
*/
#endif /* AVUTIL_INTMATH_H */