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 /libavcodec/flacenc.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 'libavcodec/flacenc.c')
-rw-r--r-- | libavcodec/flacenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index f849ffcca4..e87fdc1870 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -1065,7 +1065,7 @@ static void remove_wasted_bits(FlacEncodeContext *s) } if (v && !(v & 1)) { - v = av_ctz(v); + v = ff_ctz(v); for (i = 0; i < s->frame.blocksize; i++) sub->samples[i] >>= v; |