avfilter/vf_ssim360: Constify AVFilter

This brings ff_vf_ssim360 in line with its declaration in allfilters.c;
this discrepancy is actually undefined behaviour.

Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-01-28 18:04:09 +01:00
parent 5fd4d3faf1
commit 35f837710c
1 changed files with 1 additions and 1 deletions

View File

@ -1751,7 +1751,7 @@ static const AVFilterPad ssim360_outputs[] = {
},
};
AVFilter ff_vf_ssim360 = {
const AVFilter ff_vf_ssim360 = {
.name = "ssim360",
.description = NULL_IF_CONFIG_SMALL("Calculate the SSIM between two 360 video streams."),
.preinit = ssim360_framesync_preinit,