X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fvf_histeq.c;h=b3d2545b9f2068bdea54660e4e4b5867e68f243f;hb=e95193f5eaf1775613d68ca47ebcf66516a6b4ca;hp=ce28afdad659fb3cb91797b0bb5643d252945494;hpb=4eded225ade30ee92a02a76e644969edbe8f61dc;p=ffmpeg diff --git a/libavfilter/vf_histeq.c b/libavfilter/vf_histeq.c index ce28afdad65..b3d2545b9f2 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);