diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-01 18:32:53 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-01 18:32:53 +0000 |
commit | 333771210eca752a9a36d96b2fb8a3d31d30f91e (patch) | |
tree | 541c1e85821fdd0f42bf78bdb53a39ba1aad461e | |
parent | 321259c1ab1fb348f9896f00f481ba3dfe227e30 (diff) | |
download | ffmpeg-333771210eca752a9a36d96b2fb8a3d31d30f91e.tar.gz |
Fix reference to nonexistent function.
Originally committed as revision 25296 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 bb3312a82f..20901a3ef2 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -645,7 +645,7 @@ AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms, * @param channel_layout the number and type of channels per sample in the buffer to allocate * @param planar audio data layout - planar or packed * @return A reference to the samples. This must be unreferenced with - * avfilter_unref_samples when you are finished with it. + * avfilter_unref_buffer when you are finished with it. */ AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms, enum SampleFormat sample_fmt, int size, |