diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2019-09-30 15:12:43 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-10-08 13:47:47 +0800 |
commit | 985ed65117c7c82255bb0931442725aa6e5f6967 (patch) | |
tree | bd6fd09d2ba8be1bfda766521ccf23325b49557f | |
parent | 9b2155ad3f54ab5ed66b08fe9d10402c2d7922d9 (diff) | |
download | ffmpeg-985ed65117c7c82255bb0931442725aa6e5f6967.tar.gz |
avfilter/vf_pad: add logging context to log
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
-rw-r--r-- | libavfilter/vf_pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c index ed155578e1..186d3f028d 100644 --- a/libavfilter/vf_pad.c +++ b/libavfilter/vf_pad.c @@ -210,7 +210,7 @@ static int config_input(AVFilterLink *inlink) return 0; eval_fail: - av_log(NULL, AV_LOG_ERROR, + av_log(ctx, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr); return ret; |