diff mbox series

[FFmpeg-devel] lavfi/graphparser: use correct logging context

Message ID 20230310115120.12170-1-anton@khirnov.net
State Accepted
Commit fefcba1c1bc8f65464d2eec0ae75f9f511a003a5
Headers show
Series [FFmpeg-devel] lavfi/graphparser: use correct logging context | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Anton Khirnov March 10, 2023, 11:51 a.m. UTC
---
 libavfilter/graphparser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

James Almer March 10, 2023, 11:55 a.m. UTC | #1
On 3/10/2023 8:51 AM, Anton Khirnov wrote:
> ---
>   libavfilter/graphparser.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
> index 8e12416ccb..8f58c3c6b3 100644
> --- a/libavfilter/graphparser.c
> +++ b/libavfilter/graphparser.c
> @@ -475,7 +475,7 @@ int avfilter_graph_segment_parse(AVFilterGraph *graph, const char *graph_str,
>   
>       graph_str += strspn(graph_str, WHITESPACES);
>   
> -    ret = parse_sws_flags(&graph_str, &seg->scale_sws_opts, &graph);
> +    ret = parse_sws_flags(&graph_str, &seg->scale_sws_opts, graph);
>       if (ret < 0)
>           goto fail;

LGTM, obviously.
diff mbox series

Patch

diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 8e12416ccb..8f58c3c6b3 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -475,7 +475,7 @@  int avfilter_graph_segment_parse(AVFilterGraph *graph, const char *graph_str,
 
     graph_str += strspn(graph_str, WHITESPACES);
 
-    ret = parse_sws_flags(&graph_str, &seg->scale_sws_opts, &graph);
+    ret = parse_sws_flags(&graph_str, &seg->scale_sws_opts, graph);
     if (ret < 0)
         goto fail;