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/internal.h | |
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/internal.h')
-rw-r--r-- | libavfilter/internal.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 1454112433..bb947072e0 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -336,20 +336,6 @@ int ff_request_frame(AVFilterLink *link); int ff_filter_frame(AVFilterLink *link, AVFrame *frame); /** - * Flags for AVFilterLink.flags. - */ -enum { - - /** - * Frame requests may need to loop in order to be fulfilled. - * A filter must set this flags on an output link if it may return 0 in - * request_frame() without filtering a frame. - */ - FF_LINK_FLAG_REQUEST_LOOP = 1, - -}; - -/** * Allocate a new filter context and return it. * * @param filter what filter to create an instance of |