summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2019-12-02 16:46:11 +0100
committerNicolas George <george@nsup.org>2019-12-23 13:03:38 +0100
commit02daafb45c5e638629a4104be6c09b824d55786a (patch)
tree1c2fb44e3f323c8d1cbe95ac4ccb288dc20033b7 /libavfilter
parentf3a6ef69bfccf3b9f883ccfd75f91c1fa6916478 (diff)
lavfi: remove AVFilterPad.poll_frame().
This design is no longer used and was replaced a long time ago.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/internal.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index f98127c442..abe7537b5d 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -93,17 +93,6 @@ struct AVFilterPad {
int (*filter_frame)(AVFilterLink *link, AVFrame *frame);
/**
- * Frame poll callback. This returns the number of immediately available
- * samples. It should return a positive value if the next request_frame()
- * is guaranteed to return one frame (with no delay).
- *
- * Defaults to just calling the source poll_frame() method.
- *
- * Output pads only.
- */
- int (*poll_frame)(AVFilterLink *link);
-
- /**
* Frame request callback. A call to this should result in some progress
* towards producing output over the given link. This should return zero
* on success, and another value on error.