diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-11 17:43:29 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-11 18:03:10 -0400 |
commit | 93866c2aa2514649622ae32b6cacaf62473a9e20 (patch) | |
tree | 052620931788381dc191d3d2bc120eed71468617 /libavutil/intmath.c | |
parent | 79f2014f1264aeb9dae3134d3649aba6ca0d4d13 (diff) | |
download | ffmpeg-93866c2aa2514649622ae32b6cacaf62473a9e20.tar.gz |
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/intmath.c')
-rw-r--r-- | libavutil/intmath.c | 5 |
1 files changed, 0 insertions, 5 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); -} |