/external/libopus/celt/ |
modes.h | 36 #include "mdct.h" 78 mdct_lookup mdct; member in struct:OpusCustomMode
|
modes.c | 391 if (clt_mdct_init(&mode->mdct, 2*mode->shortMdctSize*mode->nbShortMdcts, 434 clt_mdct_clear(&mode->mdct);
|
celt_decoder.c | 38 #include "mdct.h" 282 clt_mdct_backward(&mode->mdct, &X[b+c*N*B], out_mem[c]+N*b, mode->window, overlap, shift, B); 386 /* Share the interleaved signal MDCT coefficient buffer with the 553 /* We need to extrapolate enough samples to cover a complete MDCT 628 /* Apply the pre-filter to the MDCT overlap for the next frame because 629 the post-filter will be re-applied in the decoder after the MDCT 637 MDCT of the next frame. */ [all...] |
celt_encoder.c | 38 #include "mdct.h" 417 /** Apply window and compute the MDCT for all sub-frames and 441 clt_mdct_forward(&mode->mdct, in+c*(B*N+overlap)+b*N, &out[b+c*N*B], mode->window, overlap, shift, B); [all...] |
/external/libopus/ |
celt_sources.mk | 12 celt/mdct.c \
|
celt_headers.mk | 21 celt/mdct.h \
|
Android.mk | 20 celt/mdct.c \
|
/external/libvorbis/lib/ |
envelope.h | 21 #include "mdct.h" 58 mdct_lookup mdct; member in struct:__anon17837
|
psy.h | 139 float *mdct, 148 float **mdct,
|
Makefile.am | 9 libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c \ 15 masking.h os.h mdct.h smallft.h highlevel.h\
|
psytune.c | 32 #include "mdct.h" 330 float *mdct=pcm[i]; local 331 float *logmdct=mdct+framesize/2; 335 /* fft and mdct transforms */ 351 mdct_forward(&m_look,pcm[i],mdct); 353 logmdct[j]=todB(mdct+j); 355 analysis("mdct",frameno+i,logmdct,framesize/2,1,0); 363 float *mdct=pcm[i]; local 364 float *logmdct=mdct+framesize/2; 390 mdct, [all...] |
envelope.c | 29 #include "mdct.h" 45 mdct_init(&e->mdct,n); 78 mdct_clear(&e->mdct); 120 mdct_forward(&ve->mdct,vec,vec); 122 /*_analysis_output_always("mdct",seq2,vec,n/2,0,1,0); */ 149 the MDCT results in all real coefficients, but it still *behaves*
|
psy.c | 164 the MDCT/FFT will actually give us; we want the curve applied 777 float *mdct, 795 the relative compensation of the MDCT. 802 val = val - logmdct[i]; /* val == mdct line value relative to floor in dB */ 805 /* mdct value is > -17.2 dB below floor */ 809 -0.00 dB boost if mdct value is -17.2dB (relative to floor) 810 -0.77 dB boost if mdct value is 0dB (relative to floor) 811 -1.64 dB boost if mdct value is +17.2dB (relative to floor) 816 /* mdct value is <= -17.2 dB below floor */ 820 +0.00 dB atten if mdct value is -17.2dB (relative to floor [all...] |
mapping0.c | 161 #include "mdct.h" 313 /* only MDCT right now.... */ 381 float *mdct =gmdct[i]; local 393 logmdct[j]=todB(mdct+j) + .345; /* + .345 is a hack; the original 415 _analysis_output("mdct",seq,logmdct,n/2,1,0,0); 476 mdct, 523 mdct, 548 mdct, 799 /* only MDCT right now.... */
|
floor1.c | 421 static int accumulate_fit(const float *flr,const float *mdct, 436 if(mdct[i]+info->twofitatten>=flr[i]){ 532 const float *mdct, 551 if(mdct[x]+info->twofitatten>=mask[x]){ 568 if(mdct[x]+info->twofitatten>=mask[x]){
|
/external/libvorbis/ |
Android.mk | 21 lib/mdct.c \
|
/external/libvorbis/symbian/ |
vorbis.mmp | 39 SOURCE lookup.c lpc.c lsp.c mapping0.c mdct.c psy.c registry.c res0.c sharedbook.c
|
/external/tremolo/ |
Android.mk | 13 Tremolo/mdct.c \
|
/external/libopus/src/ |
analysis.c | 234 kfft = celt_mode->mdct.kfft[0];
|
opus_multistream_encoder.c | 40 #include "mdct.h" 260 clt_mdct_forward(&celt_mode->mdct, in, freq, celt_mode->window, overlap, celt_mode->maxLM-LM, 1); [all...] |