From 229843aa359ae0c9519977d7fa952688db63f559 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 17 Aug 2015 20:45:35 -0400 Subject: Replace av_dlog with ff_dlog. ff_dlog checks compilability, and is non-public. av_dlog is deprecated and no longer exists if FF_API_DLOG=0. --- libavfilter/vf_histeq.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libavfilter/vf_histeq.c') diff --git a/libavfilter/vf_histeq.c b/libavfilter/vf_histeq.c index ce28afdad6..b3d2545b9f 100644 --- a/libavfilter/vf_histeq.c +++ b/libavfilter/vf_histeq.c @@ -28,6 +28,7 @@ */ #include "libavutil/common.h" +#include "libavutil/internal.h" #include "libavutil/opt.h" #include "libavutil/pixdesc.h" @@ -168,7 +169,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpic) #ifdef DEBUG for (x = 0; x < 256; x++) - av_dlog(ctx, "in[%d]: %u\n", x, histeq->in_histogram[x]); + ff_dlog(ctx, "in[%d]: %u\n", x, histeq->in_histogram[x]); #endif /* Calculate the lookup table. */ @@ -244,7 +245,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpic) } #ifdef DEBUG for (x = 0; x < 256; x++) - av_dlog(ctx, "out[%d]: %u\n", x, histeq->out_histogram[x]); + ff_dlog(ctx, "out[%d]: %u\n", x, histeq->out_histogram[x]); #endif av_frame_free(&inpic); -- cgit v1.2.3