diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-09-23 11:12:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-09-23 11:12:03 +0000 |
commit | 177477f57a6591f7ea772c4226532e1a83f7ad73 (patch) | |
tree | 2dcabdf0a85beb4c9ab3b6518eb7abbac6781e2e /libavfilter/avfilter.h | |
parent | c4795e8069cf6867a59e94b1d9f258d733fb4c53 (diff) | |
download | ffmpeg-177477f57a6591f7ea772c4226532e1a83f7ad73.tar.gz |
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
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 7fbcbf2322..3d9f83fb6c 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -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. |