Lines Matching defs:size
54 int data_check_present; ///< Set if the substream contains extra info to check the size of VLC blocks.
483 size_t size;
576 size = avctx->frame_size * ctx->max_restart_interval;
577 ctx->lpc_sample_buffer = av_calloc(size, sizeof(*ctx->lpc_sample_buffer));
581 size = ctx->one_sample_buffer_size * ctx->max_restart_interval;
582 ctx->major_scratch_buffer = av_calloc(size, sizeof(*ctx->major_scratch_buffer));
586 ctx->major_inout_buffer = av_calloc(size, sizeof(*ctx->major_inout_buffer));
643 size = ctx->max_restart_interval;
644 ctx->max_output_bits = av_calloc(size, sizeof(*ctx->max_output_bits));
648 size = ctx->max_restart_interval;
649 ctx->lossless_check_data = av_calloc(size, sizeof(*ctx->lossless_check_data));
659 size = ctx->restart_intervals * ctx->sequence_size * ctx->avctx->ch_layout.nb_channels;
660 ctx->channel_params = av_calloc(size, sizeof(*ctx->channel_params));
664 size = ctx->restart_intervals * ctx->sequence_size;
665 ctx->decoding_params = av_calloc(size, sizeof(*ctx->decoding_params));
2118 bytes_written = write_access_unit(ctx, avpkt->data, avpkt->size, restart_frame);