summaryrefslogtreecommitdiff
path: root/libavfilter/af_anequalizer.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-16 00:07:41 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-17 21:10:45 +0200
commit1e35744a4ce57925d5134cdd1f1e704e9e211270 (patch)
tree9c93dda83e5de165c45d474b7d32ef934b06dac7 /libavfilter/af_anequalizer.c
parentf60c3ca1361921ff7929a4dc14ed874f22f37f98 (diff)
avfilter/internal: Replace AVFilterPad.needs_writable by flags
It will be useful in the future when more flags are added. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/af_anequalizer.c')
-rw-r--r--libavfilter/af_anequalizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_anequalizer.c b/libavfilter/af_anequalizer.c
index 9aab577079..b9d02e28ff 100644
--- a/libavfilter/af_anequalizer.c
+++ b/libavfilter/af_anequalizer.c
@@ -757,9 +757,9 @@ static const AVFilterPad inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
+ .flags = AVFILTERPAD_FLAG_NEEDS_WRITABLE,
.config_props = config_input,
.filter_frame = filter_frame,
- .needs_writable = 1,
},
{ NULL }
};