diff options
author | Nicolas George <george@nsup.org> | 2015-08-26 12:11:26 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2015-09-20 19:02:33 +0200 |
commit | 44f660e7e75b856eafa5f7e7cc6e633de5d01b5d (patch) | |
tree | 87d4bcc9a0fa9d6af563e13f97ff7db906b3ff27 /libavfilter/vf_idet.c | |
parent | 2a351f6c5521c199b4285e4e42f2321e312170bd (diff) | |
download | ffmpeg-44f660e7e75b856eafa5f7e7cc6e633de5d01b5d.tar.gz |
lavfi: remove FF_LINK_FLAG_REQUEST_LOOP.
It has no longer any effect.
Diffstat (limited to 'libavfilter/vf_idet.c')
-rw-r--r-- | libavfilter/vf_idet.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index 21011cf4dd..e4fe6cbe7f 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -400,12 +400,6 @@ static int query_formats(AVFilterContext *ctx) return ff_set_common_formats(ctx, fmts_list); } -static int config_output(AVFilterLink *outlink) -{ - outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP; - return 0; -} - static av_cold int init(AVFilterContext *ctx) { IDETContext *idet = ctx->priv; @@ -440,7 +434,6 @@ static const AVFilterPad idet_outputs[] = { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, - .config_props = config_output, .request_frame = request_frame }, { NULL } |