Home | History | Annotate | Download | only in celt

Lines Matching refs:celt_sig

89    celt_sig preemph_memD[2];
91 celt_sig _decode_mem[1]; /* Size = channels*(DECODE_BUFFER_SIZE+mode->overlap) */
108 + (channels*(DECODE_BUFFER_SIZE+mode->overlap)-1)*sizeof(celt_sig)
178 static OPUS_INLINE opus_val16 SIG2WORD16(celt_sig x)
193 void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, const opus_val16 *coef, celt_sig *mem, celt_sig * OPUS_RESTRICT scratch)
204 celt_sig * OPUS_RESTRICT x;
206 celt_sig m = mem[c];
216 celt_sig tmp = x[j] + m + VERY_SMALL;
230 celt_sig tmp = x[j] + m + VERY_SMALL;
239 celt_sig tmp = x[j] + m + VERY_SMALL;
260 void compute_inv_mdcts(const CELTMode *mode, int shortBlocks, celt_sig *X,
261 celt_sig * OPUS_RESTRICT out_mem[], int C, int LM)
338 celt_sig *decode_mem[2];
339 celt_sig *out_syn[2];
350 VARDECL(celt_sig, scratch);
372 ALLOC(scratch, noise_based?N*C:N, celt_sig);
376 celt_sig *freq;
469 celt_sig *buf;
661 VARDECL(celt_sig, freq);
670 celt_sig *decode_mem[2];
671 celt_sig *out_syn[2];
914 ALLOC(freq, IMAX(CC,C)*N, celt_sig); /**< Interleaved signal MDCTs */
1068 VARDECL(celt_sig, out);
1076 ALLOC(out, C*N, celt_sig);