diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2019-09-30 15:11:50 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-10-08 13:47:43 +0800 |
commit | 9b2155ad3f54ab5ed66b08fe9d10402c2d7922d9 (patch) | |
tree | 8896f0c1b306d6ed7ca54f970fc3e334e9644c3e /libavfilter/boxblur.c | |
parent | 3dead10fa3059583a3a46030e9762aae7ea58045 (diff) | |
download | ffmpeg-9b2155ad3f54ab5ed66b08fe9d10402c2d7922d9.tar.gz |
avfilter/boxblur: add logging context to log
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'libavfilter/boxblur.c')
-rw-r--r-- | libavfilter/boxblur.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ } |