Home
last modified time | relevance | path

Searched refs:auxiliary_info_alloc_size (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavformat/
Dmovenccenc.c27 static int auxiliary_info_alloc_size(MOVMuxCencContext* ctx, int size) in auxiliary_info_alloc_size() function
31 if (ctx->auxiliary_info_size + size > ctx->auxiliary_info_alloc_size) { in auxiliary_info_alloc_size()
32 new_alloc_size = FFMAX(ctx->auxiliary_info_size + size, ctx->auxiliary_info_alloc_size * 2); in auxiliary_info_alloc_size()
37 ctx->auxiliary_info_alloc_size = new_alloc_size; in auxiliary_info_alloc_size()
48 ret = auxiliary_info_alloc_size(ctx, size); in auxiliary_info_write()
68 ret = auxiliary_info_alloc_size(ctx, 6); in auxiliary_info_add_subsample()
Dmovenccenc.h37 size_t auxiliary_info_alloc_size; member