diff mbox series

[FFmpeg-devel] avfilter/vf_guided: Add missing const

Message ID HE1PR0301MB21546F9225462059601974318F549@HE1PR0301MB2154.eurprd03.prod.outlook.com
State Accepted
Commit 7fac6efa970aace3f2f874a7cdf9551c3f969638
Headers show
Series [FFmpeg-devel] avfilter/vf_guided: Add missing const | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate fail Make fate failed
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate warning Make fate failed

Commit Message

Andreas Rheinhardt May 10, 2021, 10:30 p.m. UTC
Forgotten in f8d910e90f599f338438833dfc92e2f1915ce414.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
Will apply soon.

 libavfilter/vf_guided.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Liu Steven May 11, 2021, 3:51 a.m. UTC | #1
> 2021年5月11日 上午6:30,Andreas Rheinhardt <andreas.rheinhardt@outlook.com> 写道:
> 
> Forgotten in f8d910e90f599f338438833dfc92e2f1915ce414.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
> Will apply soon.
> 
> libavfilter/vf_guided.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/vf_guided.c b/libavfilter/vf_guided.c
> index 86c0db5032..20c142337a 100644
> --- a/libavfilter/vf_guided.c
> +++ b/libavfilter/vf_guided.c
> @@ -413,7 +413,7 @@ static const AVFilterPad guided_outputs[] = {
>     { NULL }
> };
> 
> -AVFilter ff_vf_guided = {
> +const AVFilter ff_vf_guided = {
>     .name            = "guided",
>     .description     = NULL_IF_CONFIG_SMALL("Apply Guided filter."),
>     .init            = init,
> -- 
> 2.27.0
> 
> _______________________________________________
> 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".
> 

LGTM

Thanks

Steven Liu
diff mbox series

Patch

diff --git a/libavfilter/vf_guided.c b/libavfilter/vf_guided.c
index 86c0db5032..20c142337a 100644
--- a/libavfilter/vf_guided.c
+++ b/libavfilter/vf_guided.c
@@ -413,7 +413,7 @@  static const AVFilterPad guided_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_vf_guided = {
+const AVFilter ff_vf_guided = {
     .name            = "guided",
     .description     = NULL_IF_CONFIG_SMALL("Apply Guided filter."),
     .init            = init,