From 9b2155ad3f54ab5ed66b08fe9d10402c2d7922d9 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Mon, 30 Sep 2019 15:11:50 +0800 Subject: [PATCH] avfilter/boxblur: add logging context to log Reviewed-by: Paul B Mahol Signed-off-by: Steven Liu --- libavfilter/boxblur.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/boxblur.c b/libavfilter/boxblur.c index 4534b456d9..2287396f2e 100644 --- a/libavfilter/boxblur.c +++ b/libavfilter/boxblur.c @@ -91,7 +91,7 @@ int ff_boxblur_eval_filter_params(AVFilterLink *inlink, NULL, NULL, NULL, NULL, NULL, 0, ctx); \ comp->radius = res; \ if (ret < 0) { \ - av_log(NULL, AV_LOG_ERROR, \ + av_log(ctx, AV_LOG_ERROR, \ "Error when evaluating " #comp " radius expression '%s'\n", expr); \ return ret; \ }