From 93866c2aa2514649622ae32b6cacaf62473a9e20 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 11 Oct 2015 17:43:29 -0400 Subject: 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. --- libavcodec/flacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/flacenc.c') 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; -- cgit v1.2.3