diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-16 09:19:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-22 21:06:01 +0200 |
commit | 58b049f2fa4f192b00baadb5f1f32ca366f936ea (patch) | |
tree | 8b44e5cdd0178461047042a10fc0d101f4bcba8e /libavfilter/avfilter.h | |
parent | fa0662393096a1ece73ccc321cd5b8948e96e431 (diff) | |
download | ffmpeg-58b049f2fa4f192b00baadb5f1f32ca366f936ea.tar.gz |
lavfi: support automatically inserting the fifo filter when needed.
This breaks libavfilter ABI.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index aff662f8f6..c92f7e14d4 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -363,6 +363,14 @@ struct AVFilterPad { * and another value on error. */ int (*config_props)(AVFilterLink *link); + + /** + * The filter expects a fifo to be inserted on its input link, + * typically because it has a delay. + * + * input pads only. + */ + int needs_fifo; }; #endif |