You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/vf_ccrepack: Constify filter
The discrepancy between the definition and the declaration in allfilters.c is actually UB. Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -92,7 +92,7 @@ static const AVFilterPad avfilter_vf_ccrepack_outputs[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
AVFilter ff_vf_ccrepack = {
|
const AVFilter ff_vf_ccrepack = {
|
||||||
.name = "ccrepack",
|
.name = "ccrepack",
|
||||||
.description = NULL_IF_CONFIG_SMALL("Repack CEA-708 closed caption metadata"),
|
.description = NULL_IF_CONFIG_SMALL("Repack CEA-708 closed caption metadata"),
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
|
Reference in New Issue
Block a user