aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-08-05 11:41:53 +0200
committerAnton Khirnov <anton@khirnov.net>2024-08-15 19:27:01 +0200
commit99ee7a948fd5bc014ce5a4160a71ffb068fd21e2 (patch)
treee7eab456084080a6d59b073bafd88691a34d23cb /libavfilter/avfilter.h
parent54754eec1e4b4882e7bbe1fbf4374c11d955eb36 (diff)
downloadffmpeg-99ee7a948fd5bc014ce5a4160a71ffb068fd21e2.tar.gz
lavfi: move AVFilterLink.m{ax,in}_samples to FilterLink
Also, document who sets these fields and when.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index a34e61f23c..2624b0cfca 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -626,21 +626,6 @@ struct AVFilterLink {
AVRational frame_rate;
/**
- * Minimum number of samples to filter at once. If filter_frame() is
- * called with fewer samples, it will accumulate them in fifo.
- * This field and the related ones must not be changed after filtering
- * has started.
- * If 0, all related fields are ignored.
- */
- int min_samples;
-
- /**
- * Maximum number of samples to filter at once. If filter_frame() is
- * called with more samples, it will split them.
- */
- int max_samples;
-
- /**
* Number of past frames sent through the link.
*/
int64_t frame_count_in, frame_count_out;