Home
last modified time | relevance | path

Searched refs:SBLIMIT (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmpegaudioenc_template.c58 int sb_samples[MPA_MAX_CHANNELS][3][12][SBLIMIT];
59 unsigned char scale_factors[MPA_MAX_CHANNELS][SBLIMIT][3]; /* scale factors */
61 unsigned char scale_code[MPA_MAX_CHANNELS][SBLIMIT];
377 unsigned char scale_code[SBLIMIT], in compute_scale_factors() argument
378 unsigned char scale_factors[SBLIMIT][3], in compute_scale_factors()
379 int sb_samples[3][12][SBLIMIT], in compute_scale_factors() argument
392 p += SBLIMIT; in compute_scale_factors()
492 static void psycho_acoustic_model(MpegAudioContext *s, short smr[SBLIMIT]) in psycho_acoustic_model() argument
510 short smr1[MPA_MAX_CHANNELS][SBLIMIT], in compute_bit_allocation() argument
511 unsigned char bit_alloc[MPA_MAX_CHANNELS][SBLIMIT], in compute_bit_allocation() argument
[all …]
Dmpegaudiodsp_template.c331 out[(9 + j) * SBLIMIT] = MULH3(t1, win[ 9 + j], 1) + buf[4*(9 + j)]; in imdct36()
332 out[(8 - j) * SBLIMIT] = MULH3(t1, win[ 8 - j], 1) + buf[4*(8 - j)]; in imdct36()
338 out[(9 + 8 - j) * SBLIMIT] = MULH3(t1, win[ 9 + 8 - j], 1) + buf[4*(9 + 8 - j)]; in imdct36()
339 out[ j * SBLIMIT] = MULH3(t1, win[ j], 1) + buf[4*( j)]; in imdct36()
349 out[(9 + 4) * SBLIMIT] = MULH3(t1, win[ 9 + 4], 1) + buf[4*(9 + 4)]; in imdct36()
350 out[(8 - 4) * SBLIMIT] = MULH3(t1, win[ 8 - 4], 1) + buf[4*(8 - 4)]; in imdct36()
Dmpegaudiodec_template.c71 DECLARE_ALIGNED(16, INTFLOAT, sb_hybrid)[SBLIMIT * 18]; /* 576 samples */
85 DECLARE_ALIGNED(32, INTFLOAT, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
86 INTFLOAT mdct_buf[MPA_MAX_CHANNELS][SBLIMIT * 18]; /* previous samples, for layer 3 MDCT */
393 uint8_t allocation[MPA_MAX_CHANNELS][SBLIMIT]; in mp_decode_layer1()
394 uint8_t scale_factors[MPA_MAX_CHANNELS][SBLIMIT]; in mp_decode_layer1()
404 bound = SBLIMIT; in mp_decode_layer1()
412 for (i = bound; i < SBLIMIT; i++) in mp_decode_layer1()
422 for (i = bound; i < SBLIMIT; i++) { in mp_decode_layer1()
443 for (i = bound; i < SBLIMIT; i++) { in mp_decode_layer1()
465 unsigned char bit_alloc[MPA_MAX_CHANNELS][SBLIMIT]; in mp_decode_layer2()
[all …]
Dmpegaudiotab.h93 static const float fixed_smr[SBLIMIT] = {
Dmpegaudio.h44 #define SBLIMIT 32 /* number of subbands */ macro
Dmpc.h71 DECLARE_ALIGNED(16, int32_t, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
Dqdm2.c176 DECLARE_ALIGNED(32, float, sb_samples)[MPA_MAX_CHANNELS][128][SBLIMIT];
1573 for (k = sb_used; k < SBLIMIT; k++) in qdm2_synthesis_filter()
/third_party/ffmpeg/libavcodec/x86/
Dimdct36.asm73 %define SBLIMIT 32
328 movss [outq + 64*SBLIMIT], m6
330 movss [outq + 68*SBLIMIT], m6
335 STORE m6, m7, outq + 16*SBLIMIT, 4*SBLIMIT
341 STORE m4, m6, outq + 32*SBLIMIT, 4*SBLIMIT
347 STORE m3, m7, outq + 48*SBLIMIT, 4*SBLIMIT
352 STORE m2, m7, outq, 4*SBLIMIT
/third_party/ffmpeg/libavcodec/mips/
Dcompute_antialias_fixed.h74 n = SBLIMIT - 1; in compute_antialias_mips_fixed()