summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <[email protected]>2023-01-28 18:04:09 +0100
committerAndreas Rheinhardt <[email protected]>2023-01-28 18:19:53 +0100
commit35f837710caf9cce3e098dbc2ae42f8b12b19828 (patch)
tree4e6f35dd1e6ff3e163dde1a80ca0714598df76c4
parent5fd4d3faf1c28b3154110bf5e98401bf0328189d (diff)
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 <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]>
-rw-r--r--libavfilter/vf_ssim360.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_ssim360.c b/libavfilter/vf_ssim360.c
index 35b0819d5f..3eb8e43bbc 100644
--- a/libavfilter/vf_ssim360.c
+++ b/libavfilter/vf_ssim360.c
@@ -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,