You've already forked FFmpeg
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:
@@ -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,
|
||||||
|
Reference in New Issue
Block a user