diff options
author | Nicolas George <george@nsup.org> | 2015-08-25 20:33:48 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2015-09-20 19:02:33 +0200 |
commit | 2a351f6c5521c199b4285e4e42f2321e312170bd (patch) | |
tree | 12eb1841bec672aab701b908d37416b28826bc9e /libavfilter/avfilter.h | |
parent | 598f8a7afae6d0b8a49f85ec2de69acdc5e7ac6a (diff) | |
download | ffmpeg-2a351f6c5521c199b4285e4e42f2321e312170bd.tar.gz |
lavfi: drop the requirement that request_frame returns a frame.
It requires a loop in filters or the framework,
that makes the scheduling less efficient and more complex.
This is purely an internal change since the loop is now
present in buffersink.
Note that no filter except buffersink did rely on the requirement.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 642aa834ab..5d4cd6ce12 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -500,12 +500,6 @@ struct AVFilterLink { int channels; /** - * True if a frame is being requested on the link. - * Used internally by the framework. - */ - unsigned frame_requested; - - /** * Link processing flags. */ unsigned flags; |