1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Correct terminology bug in poll_frame()

it returns the number of samples not frames (for video sample=frame)

Originally committed as revision 25162 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2010-09-23 11:12:03 +00:00
parent c4795e8069
commit 177477f57a

View 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.