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
@@ -133,7 +133,7 @@ static const AVFilterPad reverse_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_reverse = {
|
||||
const AVFilter ff_vf_reverse = {
|
||||
.name = "reverse",
|
||||
.description = NULL_IF_CONFIG_SMALL("Reverse a clip."),
|
||||
.priv_size = sizeof(ReverseContext),
|
||||
@@ -294,7 +294,7 @@ static const AVFilterPad areverse_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_af_areverse = {
|
||||
const AVFilter ff_af_areverse = {
|
||||
.name = "areverse",
|
||||
.description = NULL_IF_CONFIG_SMALL("Reverse an audio clip."),
|
||||
.query_formats = query_formats,
|
||||
|
||||
Reference in New Issue
Block a user