Searched refs:FF_ALLOCZ_ARRAY_OR_GOTO (Results 1 – 8 of 8) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | ac3enc.c | 2338 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->mdct_coef_buffer, total_coefs, in allocate_buffers() 2360 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->mdct_coef, channels, sizeof(*block->mdct_coef), in allocate_buffers() 2362 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->exp, channels, sizeof(*block->exp), in allocate_buffers() 2364 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->grouped_exp, channels, sizeof(*block->grouped_exp), in allocate_buffers() 2366 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->psd, channels, sizeof(*block->psd), in allocate_buffers() 2368 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->band_psd, channels, sizeof(*block->band_psd), in allocate_buffers() 2370 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->mask, channels, sizeof(*block->mask), in allocate_buffers() 2372 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->qmant, channels, sizeof(*block->qmant), in allocate_buffers() 2375 … FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->cpl_coord_exp, channels, sizeof(*block->cpl_coord_exp), in allocate_buffers() 2377 … FF_ALLOCZ_ARRAY_OR_GOTO(avctx, block->cpl_coord_mant, channels, sizeof(*block->cpl_coord_mant), in allocate_buffers() [all …]
|
D | dnxhdenc.c | 210 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->orig_vlc_codes, in dnxhd_init_vlc() 212 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->orig_vlc_bits, in dnxhd_init_vlc() 274 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->qmatrix_l, in dnxhd_init_qmat() 276 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->qmatrix_c, in dnxhd_init_qmat() 278 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->qmatrix_l16, in dnxhd_init_qmat() 281 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->qmatrix_c16, in dnxhd_init_qmat() 348 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->mb_rc, (ctx->m.avctx->qmax + 1), in dnxhd_init_rc() 351 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->mb_cmp, in dnxhd_init_rc() 353 FF_ALLOCZ_ARRAY_OR_GOTO(ctx->m.avctx, ctx->mb_cmp_tmp, in dnxhd_init_rc()
|
D | snow.c | 490 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->spatial_idwt_buffer, width, height * sizeof(IDWTELEM), fail); in ff_snow_common_init() 491 …FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->spatial_dwt_buffer, width, height * sizeof(DWTELEM), fail); //… in ff_snow_common_init() 492 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->temp_dwt_buffer, width, sizeof(DWTELEM), fail); in ff_snow_common_init() 493 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->temp_idwt_buffer, width, sizeof(IDWTELEM), fail); in ff_snow_common_init() 523 …FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->scratchbuf, FFMAX(s->mconly_picture->linesize[0], 2*avctx->width… in ff_snow_common_init_after_header()
|
D | mpegpicture.c | 81 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, sc->edge_emu_buffer, alloc_size, EMU_EDGE_HEIGHT, in ff_mpeg_framesize_alloc() 84 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, me->scratchpad, alloc_size, 4 * 16 * 2, in ff_mpeg_framesize_alloc()
|
D | h264dec.c | 187 FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->intra4x4_pred_mode, in ff_h264_alloc_tables() 199 FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->mvd_table[0], in ff_h264_alloc_tables() 201 FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->mvd_table[1], in ff_h264_alloc_tables()
|
D | aacenc.c | 944 …FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->buffer.samples, s->channels, 3 * 1024 * sizeof(s->buffer.samples… in alloc_buffers() 945 FF_ALLOCZ_ARRAY_OR_GOTO(avctx, s->cpe, s->chan_map[0], sizeof(ChannelElement), alloc_fail); in alloc_buffers()
|
/third_party/ffmpeg/libavutil/ |
D | internal.h | 167 #define FF_ALLOCZ_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)\ macro
|
/third_party/ffmpeg/libswscale/ |
D | utils.c | 360 FF_ALLOCZ_ARRAY_OR_GOTO(NULL, filter, in initFilter() 528 FF_ALLOCZ_ARRAY_OR_GOTO(NULL, filter2, dstW, filter2Size * sizeof(*filter2), fail); in initFilter() 687 FF_ALLOCZ_ARRAY_OR_GOTO(NULL, *outFilter, in initFilter()
|