diff mbox

[FFmpeg-devel,v1,11/14] avfilter/vf_crop: add logging context to log

Message ID 20190930071751.5919-11-lq@chinaffmpeg.org
State Accepted
Commit acc1256654fcb8c85d02857e3c1f069b1bf74f73
Headers show

Commit Message

Liu Steven Sept. 30, 2019, 7:17 a.m. UTC
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
---
 libavfilter/vf_crop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Paul B Mahol Sept. 30, 2019, 7:24 a.m. UTC | #1
lgtm

On 9/30/19, Steven Liu <lq@chinaffmpeg.org> wrote:
> Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
> ---
>  libavfilter/vf_crop.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
> index 9fca7a7309..d6b4feb513 100644
> --- a/libavfilter/vf_crop.c
> +++ b/libavfilter/vf_crop.c
> @@ -244,7 +244,7 @@ static int config_input(AVFilterLink *link)
>      return 0;
>
>  fail_expr:
> -    av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression
> '%s'\n", expr);
> +    av_log(ctx, AV_LOG_ERROR, "Error when evaluating the expression
> '%s'\n", expr);
>      return ret;
>  }
>
> --
> 2.15.1
>
>
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
diff mbox

Patch

diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index 9fca7a7309..d6b4feb513 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -244,7 +244,7 @@  static int config_input(AVFilterLink *link)
     return 0;
 
 fail_expr:
-    av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
+    av_log(ctx, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
     return ret;
 }