FFmpeg
buffer_internal.h
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #ifndef AVUTIL_BUFFER_INTERNAL_H
20 #define AVUTIL_BUFFER_INTERNAL_H
21 
22 #include <stdatomic.h>
23 #include <stdint.h>
24 
25 #include "internal.h"
26 #include "buffer.h"
27 #include "thread.h"
28 
29 /**
30  * The buffer was av_realloc()ed, so it is reallocatable.
31  */
32 #define BUFFER_FLAG_REALLOCATABLE (1 << 0)
33 
34 struct AVBuffer {
35  uint8_t *data; /**< data described by this buffer */
36  buffer_size_t size; /**< size of data in bytes */
37 
38  /**
39  * number of existing AVBufferRef instances referring to this buffer
40  */
42 
43  /**
44  * a callback for freeing the data
45  */
46  void (*free)(void *opaque, uint8_t *data);
47 
48  /**
49  * an opaque pointer, to be used by the freeing callback
50  */
51  void *opaque;
52 
53  /**
54  * A combination of AV_BUFFER_FLAG_*
55  */
56  int flags;
57 
58  /**
59  * A combination of BUFFER_FLAG_*
60  */
62 };
63 
64 typedef struct BufferPoolEntry {
66 
67  /*
68  * Backups of the original opaque/free of the AVBuffer corresponding to
69  * data. They will be used to free the buffer when the pool is freed.
70  */
71  void *opaque;
72  void (*free)(void *opaque, uint8_t *data);
73 
77 
78 struct AVBufferPool {
81 
82  /*
83  * This is used to track when the pool is to be freed.
84  * The pointer to the pool itself held by the caller is considered to
85  * be one reference. Each buffer requested by the caller increases refcount
86  * by one, returning the buffer to the pool decreases it by one.
87  * refcount reaches zero when the buffer has been uninited AND all the
88  * buffers have been released, then it's safe to free the pool and all
89  * the buffers in it.
90  */
92 
94  void *opaque;
96  AVBufferRef* (*alloc2)(void *opaque, buffer_size_t size);
97  void (*pool_free)(void *opaque);
98 };
99 
100 #endif /* AVUTIL_BUFFER_INTERNAL_H */
AVBufferPool::mutex
AVMutex mutex
Definition: buffer_internal.h:79
AVBufferPool
The buffer pool.
Definition: buffer_internal.h:78
thread.h
BufferPoolEntry::data
uint8_t * data
Definition: buffer_internal.h:65
AVBufferPool::refcount
atomic_uint refcount
Definition: buffer_internal.h:91
AVBuffer::size
buffer_size_t size
size of data in bytes
Definition: buffer_internal.h:36
AVBuffer::flags
int flags
A combination of AV_BUFFER_FLAG_*.
Definition: buffer_internal.h:56
AVBufferPool::opaque
void * opaque
Definition: buffer_internal.h:94
AVMutex
#define AVMutex
Definition: thread.h:164
BufferPoolEntry::pool
AVBufferPool * pool
Definition: buffer_internal.h:74
buffer_size_t
int buffer_size_t
Definition: internal.h:306
AVBuffer::free
void(* free)(void *opaque, uint8_t *data)
a callback for freeing the data
Definition: buffer_internal.h:46
AVBuffer::flags_internal
int flags_internal
A combination of BUFFER_FLAG_*.
Definition: buffer_internal.h:61
AVBuffer::opaque
void * opaque
an opaque pointer, to be used by the freeing callback
Definition: buffer_internal.h:51
AVBufferPool::pool_free
void(* pool_free)(void *opaque)
Definition: buffer_internal.h:97
AVBuffer::data
uint8_t * data
data described by this buffer
Definition: buffer_internal.h:35
BufferPoolEntry::free
void(* free)(void *opaque, uint8_t *data)
Definition: buffer_internal.h:72
BufferPoolEntry
Definition: buffer_internal.h:64
buffer.h
BufferPoolEntry::opaque
void * opaque
Definition: buffer_internal.h:71
AVBuffer
A reference counted buffer type.
Definition: buffer_internal.h:34
internal.h
AVBufferPool::pool
BufferPoolEntry * pool
Definition: buffer_internal.h:80
uint8_t
uint8_t
Definition: audio_convert.c:194
BufferPoolEntry::next
struct BufferPoolEntry * next
Definition: buffer_internal.h:75
AVBufferPool::size
buffer_size_t size
Definition: buffer_internal.h:93
atomic_uint
intptr_t atomic_uint
Definition: stdatomic.h:56
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:84
AVBuffer::refcount
atomic_uint refcount
number of existing AVBufferRef instances referring to this buffer
Definition: buffer_internal.h:41