diff options
author | Nicolas George <george@nsup.org> | 2020-08-12 19:17:29 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2020-08-20 18:55:19 +0200 |
commit | 03c8fe49ea3f2a2444607e541dff15a1ccd7f0c2 (patch) | |
tree | cc9b6996c9dde6640a8a14869e8537504ab774cc /libavfilter/avfilter.h | |
parent | 4ca1fb9d2a91757c8c4c34dd456abf340e3f765f (diff) | |
download | ffmpeg-03c8fe49ea3f2a2444607e541dff15a1ccd7f0c2.tar.gz |
lavfi: remove request_samples.
Filters can use min_samples/max_samples if the number is constant
or activate and ff_inlink_consume_samples().
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index fcab450f47..6acceb2a18 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -490,14 +490,6 @@ struct AVFilterLink { struct AVFilterChannelLayouts *in_channel_layouts; struct AVFilterChannelLayouts *out_channel_layouts; - /** - * Audio only, the destination filter sets this to a non-zero value to - * request that buffers with the given number of samples should be sent to - * it. - * Last buffer before EOF will be padded with silence. - */ - int request_samples; - /** stage of the initialization of the link properties (dimensions, etc) */ enum { AVLINK_UNINIT = 0, ///< not started |