Browse Source

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>
tags/n0.8
Can Wu Anton Khirnov 14 years ago
parent
commit
d49051e074
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/avio.h

+ 1
- 0
libavformat/avio.h View File

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


Loading…
Cancel
Save