You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	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 <anton@khirnov.net>
This commit is contained in:
		| @@ -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. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user