avio: update avio_alloc_context() doxy

It must be freed using avio_context_free() starting with commit
99684f3ae7.

Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
James Almer 2017-09-01 12:32:45 -03:00 committed by Luca Barbato
parent 10eb496d9a
commit ac6691ab99
1 changed files with 1 additions and 1 deletions

View File

@ -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.