summaryrefslogtreecommitdiff
path: root/libavfilter/vf_colorize.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/vf_colorize.c
parentf60c3ca1361921ff7929a4dc14ed874f22f37f98 (diff)
downloadffmpeg-1e35744a4ce57925d5134cdd1f1e704e9e211270.tar.gz
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/vf_colorize.c')
-rw-r--r--libavfilter/vf_colorize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_colorize.c b/libavfilter/vf_colorize.c
index 84876b78da..14c29d6486 100644
--- a/libavfilter/vf_colorize.c
+++ b/libavfilter/vf_colorize.c
@@ -259,7 +259,7 @@ static const AVFilterPad colorize_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
- .needs_writable = 1,
+ .flags = AVFILTERPAD_FLAG_NEEDS_WRITABLE,
.filter_frame = filter_frame,
.config_props = config_input,
},