AC3_BLOCK_SIZE 39 libavcodec/ac3.h #define AC3_WINDOW_SIZE (AC3_BLOCK_SIZE * 2) AC3_BLOCK_SIZE 1640 libavcodec/ac3dec.c memcpy(s->output_buffer[ch + offset] + AC3_BLOCK_SIZE*blk, output[ch], AC3_BLOCK_SIZE*sizeof(SHORTFLOAT)); AC3_BLOCK_SIZE 1645 libavcodec/ac3dec.c s->outptr[channel_map[ch]] += AC3_BLOCK_SIZE; AC3_BLOCK_SIZE 1651 libavcodec/ac3dec.c memcpy(s->output[ch + offset], output[ch], AC3_BLOCK_SIZE*sizeof(SHORTFLOAT)); AC3_BLOCK_SIZE 1752 libavcodec/ac3dec.c frame->nb_samples = s->num_blocks * AC3_BLOCK_SIZE; AC3_BLOCK_SIZE 1761 libavcodec/ac3dec.c s->num_blocks * AC3_BLOCK_SIZE * sizeof(SHORTFLOAT)); AC3_BLOCK_SIZE 245 libavcodec/ac3dec.h DECLARE_ALIGNED(32, INTFLOAT, delay)[EAC3_MAX_CHANNELS][AC3_BLOCK_SIZE]; ///< delay - added to the next block AC3_BLOCK_SIZE 246 libavcodec/ac3dec.h DECLARE_ALIGNED(32, INTFLOAT, window)[AC3_BLOCK_SIZE]; ///< window coefficients AC3_BLOCK_SIZE 247 libavcodec/ac3dec.h DECLARE_ALIGNED(32, INTFLOAT, tmp_output)[AC3_BLOCK_SIZE]; ///< temporary storage for output before windowing AC3_BLOCK_SIZE 248 libavcodec/ac3dec.h DECLARE_ALIGNED(32, SHORTFLOAT, output)[EAC3_MAX_CHANNELS][AC3_BLOCK_SIZE]; ///< output after imdct transform and windowing AC3_BLOCK_SIZE 250 libavcodec/ac3dec.h DECLARE_ALIGNED(32, SHORTFLOAT, output_buffer)[EAC3_MAX_CHANNELS][AC3_BLOCK_SIZE * 6]; ///< final output buffer AC3_BLOCK_SIZE 192 libavcodec/ac3enc.c s->samples_written += AC3_BLOCK_SIZE * s->num_blocks; AC3_BLOCK_SIZE 2166 libavcodec/ac3enc.c frame_samples = AC3_BLOCK_SIZE * num_blocks; AC3_BLOCK_SIZE 2438 libavcodec/ac3enc.c avctx->frame_size = AC3_BLOCK_SIZE * s->num_blocks; AC3_BLOCK_SIZE 2439 libavcodec/ac3enc.c avctx->initial_padding = AC3_BLOCK_SIZE; AC3_BLOCK_SIZE 50 libavcodec/ac3enc_template.c (AC3_FRAME_SIZE+AC3_BLOCK_SIZE) * sizeof(**s->planar_samples), AC3_BLOCK_SIZE 71 libavcodec/ac3enc_template.c memcpy(&s->planar_samples[ch][0], &s->planar_samples[ch][AC3_BLOCK_SIZE * s->num_blocks], AC3_BLOCK_SIZE 72 libavcodec/ac3enc_template.c AC3_BLOCK_SIZE * sizeof(s->planar_samples[0][0])); AC3_BLOCK_SIZE 75 libavcodec/ac3enc_template.c memcpy(&s->planar_samples[ch][AC3_BLOCK_SIZE], AC3_BLOCK_SIZE 77 libavcodec/ac3enc_template.c AC3_BLOCK_SIZE * s->num_blocks * sizeof(s->planar_samples[0][0])); AC3_BLOCK_SIZE 94 libavcodec/ac3enc_template.c const SampleType *input_samples = &s->planar_samples[ch][blk * AC3_BLOCK_SIZE];