diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-08 17:18:08 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-09 13:21:17 +0200 |
commit | 8d0082bedae7cc3a4c3153a83c9ae94c74ae7431 (patch) | |
tree | ef5182b1dc6465a8dfd9fe3f45c10d66eeca831a /libavfilter | |
parent | 5a261cfa32d2833d20d87414bef267f3765abc4d (diff) | |
download | ffmpeg-8d0082bedae7cc3a4c3153a83c9ae94c74ae7431.tar.gz |
avfilter/af_atilt: Constify filter
(It is actually UB if a declaration and its definition differ wrt
their types like they do in this case (the declaration in allfilters
is const).)
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_atilt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_atilt.c b/libavfilter/af_atilt.c index c8d55590c3..a1ce030feb 100644 --- a/libavfilter/af_atilt.c +++ b/libavfilter/af_atilt.c @@ -253,7 +253,7 @@ static const AVFilterPad outputs[] = { }, }; -AVFilter ff_af_atilt = { +const AVFilter ff_af_atilt = { .name = "atilt", .description = NULL_IF_CONFIG_SMALL("Apply spectral tilt to audio."), .priv_size = sizeof(ATiltContext), |