Lines Matching refs:size
79 * The size of this struct is not a part of the public ABI and it is not meant
94 size_t size;
98 * Allocate an AVBuffer of the given size using av_malloc().
100 * @return an AVBufferRef of given size or NULL when out of memory
102 AVBufferRef *av_buffer_alloc(size_t size);
108 AVBufferRef *av_buffer_allocz(size_t size);
124 * @param size size of data in bytes
131 AVBufferRef *av_buffer_create(uint8_t *data, size_t size,
188 * unreferenced and a new reference with the required size will be
191 * @param size required new buffer size.
199 int av_buffer_realloc(AVBufferRef **buf, size_t size);
230 * same size (the most obvious use case being buffers for raw video or audio
260 * @param size size of each buffer in this pool
266 AVBufferPool *av_buffer_pool_init(size_t size, AVBufferRef* (*alloc)(size_t size));
271 * @param size size of each buffer in this pool
283 AVBufferPool *av_buffer_pool_init2(size_t size, void *opaque,
284 AVBufferRef* (*alloc)(void *opaque, size_t size),