summaryrefslogtreecommitdiff
path: root/libavutil/buffer.c
Commit message (Collapse)AuthorAge
* buffer: add support for pools using caller data in allocationAnton Khirnov2016-02-14
| | | | | This should allow using more complex allocators than simple malloc wrappers.
* lavu: fix memory leaks by using a mutex instead of atomicswm42014-11-27
| | | | | | | | | | | | | | | | | | | | | The buffer pool has to atomically add and remove entries from the linked list of available buffers. This was done by removing the entire list with a CAS operation, working on it, and then setting it back again (using a retry-loop in case another thread was doing the same thing). This could effectively cause memory leaks: while a thread was working on the buffer list, other threads would allocate new buffers, increasing the pool's total size. There was no real leak, but since these extra buffers were not needed, but not free'd either (except when the buffer pool was destroyed), this had the same effects as a real leak. For some reason, growth was exponential, and could easily kill the process due to OOM in real-world uses. Fix this by using a mutex to protect the list operations. The fancy way atomics remove the whole list to work on it is not needed anymore, which also avoids the situation which was causing the leak. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVBuffer: add a new API for buffer poolsAnton Khirnov2013-03-08
|
* lavu: add a new API for reference-counted data buffers.Anton Khirnov2013-03-08