Home | History | Annotate | Download | only in libspeex

Lines Matching defs:in

4    Redistribution and use in source and binary forms, with or without
11 - Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
279 spx_word16_t *in = (spx_word16_t*)vin;
299 highpass(in, in, st->frameSize, (st->isWideband?HIGHPASS_WIDEBAND:HIGHPASS_NARROWBAND)|HIGHPASS_INPUT, st->mem_hp);
310 w_sig[i] = EXTRACT16(SHR32(MULT16_16(in[i-st->windowSize+st->frameSize],st->window[i]),SIG_SHIFT));
313 autocorr[0] = ADD16(autocorr[0],MULT16_16_Q15(autocorr[0],st->lpc_floor)); /* Noise floor in auto-correlation domain */
315 /* Lag windowing: equivalent to filtering in the power-spectrum domain */
366 SPEEX_COPY(st->sw+diff, in, st->frameSize-diff);
399 SPEEX_COPY(st->exc+diff, in, st->frameSize-diff);
415 SPEEX_COPY(&st->psy_window[256-st->frameSize], in, st->frameSize);
450 st->relative_quality = vbr_analysis(st->vbr, in, st->frameSize, ol_pitch, GAIN_SCALING_1*ol_pitch_coef);
558 SPEEX_COPY(st->winBuf, in+2*st->frameSize-st->windowSize, st->windowSize-st->frameSize);
675 /* Compute analysis filter gain at w=pi (for use in SB-CELP) */
715 real_exc[i] = sw[i] = in[i+((sub-1)*st->subframeSize)];
806 /*FIXME: Should use DIV32_16 and make sure result fits in 16 bits */
855 /* In some (rare) modes, we do a second search (more bits) to reduce noise even more */
888 /* Store the LSPs for interpolation in the next frame */
914 SPEEX_COPY(st->winBuf, in+2*st->frameSize-st->windowSize, st->windowSize-st->frameSize);
1109 /* Check if we're in DTX mode*/
1176 } else if (m==14) /* Speex in-band request */
1181 } else if (m==13) /* User in-band request */
1442 Not quite sure why we need the factor of two in the sqrt */
1476 /* If the last packet was lost, re-scale the excitation to obtain the same energy as encoded in ol_gain */
1554 /* Store the LSPs for interpolation in the next frame */
1863 /* Done in a strange way to catch NaNs as well */