summaryrefslogtreecommitdiff
path: root/libavfilter/vf_blend.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2015-08-26 12:11:26 +0200
committerNicolas George <george@nsup.org>2015-09-20 19:02:33 +0200
commit44f660e7e75b856eafa5f7e7cc6e633de5d01b5d (patch)
tree87d4bcc9a0fa9d6af563e13f97ff7db906b3ff27 /libavfilter/vf_blend.c
parent2a351f6c5521c199b4285e4e42f2321e312170bd (diff)
lavfi: remove FF_LINK_FLAG_REQUEST_LOOP.
It has no longer any effect.
Diffstat (limited to 'libavfilter/vf_blend.c')
-rw-r--r--libavfilter/vf_blend.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c
index be92bd15be..ef0e7e46b1 100644
--- a/libavfilter/vf_blend.c
+++ b/libavfilter/vf_blend.c
@@ -467,9 +467,8 @@ static int config_output(AVFilterLink *outlink)
is_16bit = pix_desc->comp[0].depth == 16;
s->nb_planes = av_pix_fmt_count_planes(toplink->format);
- if (s->tblend)
- outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP;
- else if ((ret = ff_dualinput_init(ctx, &s->dinput)) < 0)
+ if (!s->tblend)
+ if ((ret = ff_dualinput_init(ctx, &s->dinput)) < 0)
return ret;
for (plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) {