From d49051e0742c09345495ae0486c3601a15222ac4 Mon Sep 17 00:00:00 2001 From: Can Wu Date: Sat, 14 May 2011 17:34:28 +0800 Subject: avio: document buffer must created with av_malloc() and friends Else a later buffer resize in ffio_set_buf_size() will ABORT. Signed-off-by: Anton Khirnov --- libavformat/avio.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/avio.h') diff --git a/libavformat/avio.h b/libavformat/avio.h index b98137b83b..e07e3c3c92 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -373,6 +373,7 @@ void avio_set_interrupt_cb(int (*interrupt_cb)(void)); * freed with av_free(). * * @param buffer Memory block for input/output operations via AVIOContext. + * The buffer must be allocated with av_malloc() and friends. * @param buffer_size The buffer size is very important for performance. * For protocols with fixed blocksize it should be set to this blocksize. * For others a typical size is a cache page, e.g. 4kb. -- cgit v1.2.3