AC3_BLOCK_SIZE 38 libavcodec/ac3.h #define AC3_WINDOW_SIZE (AC3_BLOCK_SIZE * 2) AC3_BLOCK_SIZE 1534 libavcodec/ac3dec.c frame->nb_samples = s->num_blocks * AC3_BLOCK_SIZE; AC3_BLOCK_SIZE 1555 libavcodec/ac3dec.c memcpy(((SHORTFLOAT*)frame->data[ch]) + AC3_BLOCK_SIZE*blk, output[ch], AC3_BLOCK_SIZE*sizeof(SHORTFLOAT)); AC3_BLOCK_SIZE 1560 libavcodec/ac3dec.c s->outptr[channel_map[ch]] += AC3_BLOCK_SIZE; AC3_BLOCK_SIZE 1568 libavcodec/ac3dec.c memcpy(s->output[ch], output[ch], AC3_BLOCK_SIZE*sizeof(SHORTFLOAT)); AC3_BLOCK_SIZE 234 libavcodec/ac3dec.h DECLARE_ALIGNED(32, INTFLOAT, delay)[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]; ///< delay - added to the next block AC3_BLOCK_SIZE 235 libavcodec/ac3dec.h DECLARE_ALIGNED(32, INTFLOAT, window)[AC3_BLOCK_SIZE]; ///< window coefficients AC3_BLOCK_SIZE 236 libavcodec/ac3dec.h DECLARE_ALIGNED(32, INTFLOAT, tmp_output)[AC3_BLOCK_SIZE]; ///< temporary storage for output before windowing AC3_BLOCK_SIZE 237 libavcodec/ac3dec.h DECLARE_ALIGNED(32, SHORTFLOAT, output)[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]; ///< output after imdct transform and windowing AC3_BLOCK_SIZE 191 libavcodec/ac3enc.c s->samples_written += AC3_BLOCK_SIZE * s->num_blocks; AC3_BLOCK_SIZE 2164 libavcodec/ac3enc.c frame_samples = AC3_BLOCK_SIZE * num_blocks; AC3_BLOCK_SIZE 2437 libavcodec/ac3enc.c avctx->frame_size = AC3_BLOCK_SIZE * s->num_blocks; AC3_BLOCK_SIZE 2438 libavcodec/ac3enc.c avctx->initial_padding = AC3_BLOCK_SIZE; AC3_BLOCK_SIZE 64 libavcodec/ac3enc_template.c (AC3_FRAME_SIZE+AC3_BLOCK_SIZE) * sizeof(**s->planar_samples), AC3_BLOCK_SIZE 85 libavcodec/ac3enc_template.c memcpy(&s->planar_samples[ch][0], &s->planar_samples[ch][AC3_BLOCK_SIZE * s->num_blocks], AC3_BLOCK_SIZE 86 libavcodec/ac3enc_template.c AC3_BLOCK_SIZE * sizeof(s->planar_samples[0][0])); AC3_BLOCK_SIZE 89 libavcodec/ac3enc_template.c memcpy(&s->planar_samples[ch][AC3_BLOCK_SIZE], AC3_BLOCK_SIZE 91 libavcodec/ac3enc_template.c AC3_BLOCK_SIZE * s->num_blocks * sizeof(s->planar_samples[0][0])); AC3_BLOCK_SIZE 108 libavcodec/ac3enc_template.c const SampleType *input_samples = &s->planar_samples[ch][blk * AC3_BLOCK_SIZE];