1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avfilter/vf_guided: Add missing const

Forgotten in f8d910e90f.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2021-05-11 00:29:16 +02:00
parent 6bf95c2066
commit 7fac6efa97

View File

@@ -413,7 +413,7 @@ static const AVFilterPad guided_outputs[] = {
{ NULL } { NULL }
}; };
AVFilter ff_vf_guided = { const AVFilter ff_vf_guided = {
.name = "guided", .name = "guided",
.description = NULL_IF_CONFIG_SMALL("Apply Guided filter."), .description = NULL_IF_CONFIG_SMALL("Apply Guided filter."),
.init = init, .init = init,