1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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

View File

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