diff options
author | James Almer <jamrial@gmail.com> | 2017-09-01 12:32:45 -0300 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2017-09-14 09:53:31 +0200 |
commit | ac6691ab9938107d818cd8066ce3ea329ad14d8d (patch) | |
tree | 9231c5ede55c03a1e438866b03cc090af542affa | |
parent | 10eb496d9ae94df6f792b0e1d8750738eb3a0952 (diff) | |
download | ffmpeg-ac6691ab9938107d818cd8066ce3ea329ad14d8d.tar.gz |
avio: update avio_alloc_context() doxy
It must be freed using avio_context_free() starting with commit
99684f3ae752fc8bfb44a2dd1482f8d7a3d8536d.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rw-r--r-- | libavformat/avio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index f604c4ad41..818fbaa505 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -195,7 +195,7 @@ int avio_check(const char *url, int flags); /** * Allocate and initialize an AVIOContext for buffered I/O. It must be later - * freed with av_free(). + * freed with avio_context_free(). * * @param buffer Memory block for input/output operations via AVIOContext. * The buffer must be allocated with av_malloc() and friends. |