summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-21 19:30:07 +0200
committerAnton Khirnov <anton@khirnov.net>2012-05-22 21:37:44 +0200
commitce353a881fe305d4e6f046d6f36f2071449ca57b (patch)
tree31fd943eb5d62dd52aee684e1b3bed71156caa51 /libavfilter
parentc04c533f62b80e9d6bbcb89946bab6206a8873c5 (diff)
lavfi: fix incorrect comment.
poll_frame()/request_frame() are used for audio too.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avfilter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 54adc5cf3a..3483569bce 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -421,7 +421,7 @@ struct AVFilterPad {
*
* Defaults to just calling the source poll_frame() method.
*
- * Output video pads only.
+ * Output pads only.
*/
int (*poll_frame)(AVFilterLink *link);
@@ -430,7 +430,7 @@ struct AVFilterPad {
* frame being output over the given link. This should return zero on
* success, and another value on error.
*
- * Output video pads only.
+ * Output pads only.
*/
int (*request_frame)(AVFilterLink *link);