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
@@ -281,7 +281,7 @@ static const AVFilterPad aoutputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_af_aloop = {
|
||||
const AVFilter ff_af_aloop = {
|
||||
.name = "aloop",
|
||||
.description = NULL_IF_CONFIG_SMALL("Loop audio samples."),
|
||||
.priv_size = sizeof(LoopContext),
|
||||
@@ -454,7 +454,7 @@ static const AVFilterPad outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_loop = {
|
||||
const AVFilter ff_vf_loop = {
|
||||
.name = "loop",
|
||||
.description = NULL_IF_CONFIG_SMALL("Loop video frames."),
|
||||
.priv_size = sizeof(LoopContext),
|
||||
|
Reference in New Issue
Block a user