diff options
author | avcoder <ffmpeg@gmail.com> | 2009-02-18 14:01:46 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-18 14:01:46 +0000 |
commit | 1447aac4bed278e0e1abdf75ab2ff7aa6405ede6 (patch) | |
tree | 9c613aab2d670ca45a9450ee0fcceda5c0f3eb41 | |
parent | 9392863d1bf2b6b7a73375e678fec9f3f7a1dd58 (diff) | |
download | ffmpeg-1447aac4bed278e0e1abdf75ab2ff7aa6405ede6.tar.gz |
av_alloc_format_context has been renamed, update AVFormatContext av_class
documentation accordingly.
Patch by avcoder: `gmail_address(ffmpeg)`
Originally committed as revision 17430 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 85eb9ea6ba..3640808765 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -535,7 +535,7 @@ typedef struct AVChapter { * sizeof(AVFormatContext) must not be used outside libav*. */ typedef struct AVFormatContext { - const AVClass *av_class; /**< Set by av_alloc_format_context. */ + const AVClass *av_class; /**< Set by avformat_alloc_context. */ /* Can only be iformat or oformat, not both at the same time. */ struct AVInputFormat *iformat; struct AVOutputFormat *oformat; |