summaryrefslogtreecommitdiff
path: root/libavfilter/f_reverse.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/f_reverse.c
parent2a351f6c5521c199b4285e4e42f2321e312170bd (diff)
lavfi: remove FF_LINK_FLAG_REQUEST_LOOP.
It has no longer any effect.
Diffstat (limited to 'libavfilter/f_reverse.c')
-rw-r--r--libavfilter/f_reverse.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/f_reverse.c b/libavfilter/f_reverse.c
index 37c25e9045..5bf71b38ed 100644
--- a/libavfilter/f_reverse.c
+++ b/libavfilter/f_reverse.c
@@ -62,12 +62,6 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->frames);
}
-static int config_output(AVFilterLink *outlink)
-{
- outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP;
- return 0;
-}
-
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
{
AVFilterContext *ctx = inlink->dst;
@@ -129,7 +123,6 @@ static const AVFilterPad reverse_outputs[] = {
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.request_frame = request_frame,
- .config_props = config_output,
},
{ NULL }
};
@@ -240,7 +233,6 @@ static const AVFilterPad areverse_outputs[] = {
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.request_frame = areverse_request_frame,
- .config_props = config_output,
},
{ NULL }
};