summaryrefslogtreecommitdiff
path: root/libavfilter/vf_guided.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-11 00:29:16 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-11 00:29:16 +0200
commit7fac6efa970aace3f2f874a7cdf9551c3f969638 (patch)
treed46349572190e7631603bc4caa1402ab224b8b37 /libavfilter/vf_guided.c
parent6bf95c20665d36c5ef7e1b4512653db8f5d729a1 (diff)
downloadffmpeg-7fac6efa970aace3f2f874a7cdf9551c3f969638.tar.gz
avfilter/vf_guided: Add missing const
Forgotten in f8d910e90f599f338438833dfc92e2f1915ce414. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_guided.c')
-rw-r--r--libavfilter/vf_guided.c2
1 files changed, 1 insertions, 1 deletions
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,