OSDN Git Service

Correct terminology bug in poll_frame()
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 23 Sep 2010 11:12:03 +0000 (11:12 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 23 Sep 2010 11:12:03 +0000 (11:12 +0000)
it returns the number of samples not frames (for video sample=frame)

Originally committed as revision 25162 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/avfilter.h

index 7fbcbf2..3d9f83f 100644 (file)
@@ -391,7 +391,7 @@ struct AVFilterPad {
 
     /**
      * Frame poll callback. This returns the number of immediately available
-     * frames. It should return a positive value if the next request_frame()
+     * 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.