mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
avfilter: Constify all AVFilters
This is possible now that the next-API is gone. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
85ba17f36d
commit
a04ad248a0
@@ -119,7 +119,7 @@ static const AVFilterPad avfilter_vf_split_inputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_split = {
|
||||
const AVFilter ff_vf_split = {
|
||||
.name = "split",
|
||||
.description = NULL_IF_CONFIG_SMALL("Pass on the input to N video outputs."),
|
||||
.priv_size = sizeof(SplitContext),
|
||||
@@ -140,7 +140,7 @@ static const AVFilterPad avfilter_af_asplit_inputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_af_asplit = {
|
||||
const AVFilter ff_af_asplit = {
|
||||
.name = "asplit",
|
||||
.description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
|
||||
.priv_size = sizeof(SplitContext),
|
||||
|
||||
Reference in New Issue
Block a user