mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02: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
+2
-2
@@ -322,7 +322,7 @@ static const AVFilterPad aevalsrc_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_asrc_aevalsrc = {
|
||||
const AVFilter ff_asrc_aevalsrc = {
|
||||
.name = "aevalsrc",
|
||||
.description = NULL_IF_CONFIG_SMALL("Generate an audio signal generated by an expression."),
|
||||
.query_formats = query_formats,
|
||||
@@ -473,7 +473,7 @@ static const AVFilterPad aeval_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_af_aeval = {
|
||||
const AVFilter ff_af_aeval = {
|
||||
.name = "aeval",
|
||||
.description = NULL_IF_CONFIG_SMALL("Filter audio signal according to a specified expression."),
|
||||
.query_formats = aeval_query_formats,
|
||||
|
||||
Reference in New Issue
Block a user