diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-02-01 04:41:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-01 04:43:06 +0100 |
commit | 9fdae05607c9f406bb529ff8a1d05e00bcba3601 (patch) | |
tree | 7d586e301aa5578e63233c6784d0f503d4c68710 /libavformat/avformat.h | |
parent | c4bdb2bf93be8075dbef059d753e7fc8b824b019 (diff) | |
download | ffmpeg-9fdae05607c9f406bb529ff8a1d05e00bcba3601.tar.gz |
libavformat/avformat.h: fix stray libavformat reference
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-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 dae0c07ffb..61cb280296 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -50,7 +50,7 @@ * * Main lavf structure used for both muxing and demuxing is AVFormatContext, * which exports all information about the file being read or written. As with - * most Libav structures, its size is not part of public ABI, so it cannot be + * most Libavformat structures, its size is not part of public ABI, so it cannot be * allocated on stack or directly with av_malloc(). To create an * AVFormatContext, use avformat_alloc_context() (some functions, like * avformat_open_input() might do that for you). |