Browse Source

lavfi: fix incorrect comment.

poll_frame()/request_frame() are used for audio too.
tags/n0.11
Anton Khirnov 13 years ago
parent
commit
ce353a881f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/avfilter.h

+ 2
- 2
libavfilter/avfilter.h View File

@@ -421,7 +421,7 @@ struct AVFilterPad {
* *
* Defaults to just calling the source poll_frame() method. * Defaults to just calling the source poll_frame() method.
* *
* Output video pads only.
* Output pads only.
*/ */
int (*poll_frame)(AVFilterLink *link); int (*poll_frame)(AVFilterLink *link);


@@ -430,7 +430,7 @@ struct AVFilterPad {
* frame being output over the given link. This should return zero on * frame being output over the given link. This should return zero on
* success, and another value on error. * success, and another value on error.
* *
* Output video pads only.
* Output pads only.
*/ */
int (*request_frame)(AVFilterLink *link); int (*request_frame)(AVFilterLink *link);




Loading…
Cancel
Save