| 
    FFmpeg
    
   | 
 
#include <stdint.h>#include <string.h>#include "atomic.h"#include "buffer_internal.h"#include "common.h"#include "mem.h"#include "thread.h"Go to the source code of this file.
Functions | |
| AVBufferRef * | av_buffer_create (uint8_t *data, int size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags) | 
| Create an AVBuffer from an existing array.   | |
| void | av_buffer_default_free (void *opaque, uint8_t *data) | 
| Default free callback, which calls av_free() on the buffer data.   | |
| AVBufferRef * | av_buffer_alloc (int size) | 
| Allocate an AVBuffer of the given size using av_malloc().   | |
| AVBufferRef * | av_buffer_allocz (int size) | 
| Same as av_buffer_alloc(), except the returned buffer will be initialized to zero.   | |
| AVBufferRef * | av_buffer_ref (AVBufferRef *buf) | 
| Create a new reference to an AVBuffer.   | |
| static void | buffer_replace (AVBufferRef **dst, AVBufferRef **src) | 
| void | av_buffer_unref (AVBufferRef **buf) | 
| Free a given reference and automatically free the buffer if there are no more references to it.   | |
| int | av_buffer_is_writable (const AVBufferRef *buf) | 
| void * | av_buffer_get_opaque (const AVBufferRef *buf) | 
| int | av_buffer_get_ref_count (const AVBufferRef *buf) | 
| int | av_buffer_make_writable (AVBufferRef **pbuf) | 
| Create a writable reference from a given buffer reference, avoiding data copy if possible.   | |
| int | av_buffer_realloc (AVBufferRef **pbuf, int size) | 
| Reallocate a given buffer.   | |
| AVBufferPool * | av_buffer_pool_init (int size, AVBufferRef *(*alloc)(int size)) | 
| Allocate and initialize a buffer pool.   | |
| static void | buffer_pool_free (AVBufferPool *pool) | 
| void | av_buffer_pool_uninit (AVBufferPool **ppool) | 
| Mark the pool as being available for freeing.   | |
| static BufferPoolEntry * | get_pool (AVBufferPool *pool) | 
| static void | add_to_pool (BufferPoolEntry *buf) | 
| static void | pool_release_buffer (void *opaque, uint8_t *data) | 
| static AVBufferRef * | pool_alloc_buffer (AVBufferPool *pool) | 
| AVBufferRef * | av_buffer_pool_get (AVBufferPool *pool) | 
| Allocate a new AVBuffer, reusing an old buffer from the pool when available.   | |
      
  | 
  static | 
Definition at line 106 of file buffer.c.
Referenced by av_buffer_unref().
      
  | 
  static | 
Definition at line 238 of file buffer.c.
Referenced by av_buffer_pool_uninit(), and pool_release_buffer().
      
  | 
  static | 
Definition at line 266 of file buffer.c.
Referenced by add_to_pool(), and av_buffer_pool_get().
      
  | 
  static | 
Definition at line 280 of file buffer.c.
Referenced by av_buffer_pool_get(), and pool_release_buffer().
Definition at line 302 of file buffer.c.
Referenced by av_buffer_pool_get(), and pool_alloc_buffer().
      
  | 
  static | 
Definition at line 325 of file buffer.c.
Referenced by av_buffer_pool_get().
 1.8.2