summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-05 06:30:54 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-05 17:53:43 +0200
commit304cb08693220b1e8a09273f28688537fd9ff39e (patch)
treecef8a2d7be24dde8a0d654843faaaf474684fbac /libavfilter/avfilter.h
parentb3a0548a981db52911dd34d9de254c4fee0a8f79 (diff)
downloadffmpeg-304cb08693220b1e8a09273f28688537fd9ff39e.tar.gz
avfilter/avfilter: Remove unused partial_buf
It is unused since 02aa0701ae0dc2def8db640c9e3c06dc1b5de70c. The corresponding size field is write-only since then. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index a71745283c..360f63bc45 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -549,19 +549,8 @@ struct AVFilterLink {
AVRational frame_rate;
/**
- * Buffer partially filled with samples to achieve a fixed/minimum size.
- */
- AVFrame *partial_buf;
-
- /**
- * Size of the partial buffer to allocate.
- * Must be between min_samples and max_samples.
- */
- int partial_buf_size;
-
- /**
* Minimum number of samples to filter at once. If filter_frame() is
- * called with fewer samples, it will accumulate them in partial_buf.
+ * 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.