]> git.sesse.net Git - ffmpeg/commitdiff
lavfi: fix incorrect comment.
authorAnton Khirnov <anton@khirnov.net>
Mon, 21 May 2012 17:30:07 +0000 (19:30 +0200)
committerAnton Khirnov <anton@khirnov.net>
Tue, 22 May 2012 19:37:44 +0000 (21:37 +0200)
poll_frame()/request_frame() are used for audio too.

libavfilter/avfilter.h

index 54adc5cf3a76768fb4a0fc698346a1d0930812f7..3483569bce4fa90ba87a8917f0019a8aad5f8484 100644 (file)
@@ -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);