/external/libopus/celt/ |
vq.h | 54 unsigned alg_quant(celt_norm *X, int N, int K, int spread, int B, 68 unsigned alg_unquant(celt_norm *X, int N, int K, int spread, int B, 71 void renormalise_vector(celt_norm *X, int N, opus_val16 gain, int arch); 73 int stereo_itheta(const celt_norm *X, const celt_norm *Y, int stereo, int N, int arch);
|
bands.h | 54 void normalise_bands(const CELTMode *m, const celt_sig * OPUS_RESTRICT freq, celt_norm * OPUS_RESTRICT X, const celt_ener *bandE, int end, int C, int M); 61 void denormalise_bands(const CELTMode *m, const celt_norm * OPUS_RESTRICT X, 70 int spreading_decision(const CELTMode *m, const celt_norm *X, int *average, 78 void haar1(celt_norm *X, int N0, int stride); 104 celt_norm * X, celt_norm * Y, unsigned char *collapse_masks, 110 void anti_collapse(const CELTMode *m, celt_norm *X_,
|
vq.c | 43 static void exp_rotation1(celt_norm *X, int len, int stride, opus_val16 c, opus_val16 s) 47 celt_norm *Xptr; 52 celt_norm x1, x2; 61 celt_norm x1, x2; 70 static void exp_rotation(celt_norm *X, int len, int dir, int stride, int K, int spread) 117 static void normalise_residual(int * OPUS_RESTRICT iy, celt_norm * OPUS_RESTRICT X, 161 unsigned alg_quant(celt_norm *X, int N, int K, int spread, int B, ec_enc *enc 167 VARDECL(celt_norm, y); 182 ALLOC(y, N, celt_norm); 236 y[j] = (celt_norm)iy[j] [all...] |
bands.c | 136 void normalise_bands(const CELTMode *m, const celt_sig * OPUS_RESTRICT freq, celt_norm * OPUS_RESTRICT X, const celt_ener *bandE, int end, int C, int M) 176 void normalise_bands(const CELTMode *m, const celt_sig * OPUS_RESTRICT freq, celt_norm * OPUS_RESTRICT X, const celt_ener *bandE, int end, int C, int M) 195 void denormalise_bands(const CELTMode *m, const celt_norm * OPUS_RESTRICT X, 202 const celt_norm * OPUS_RESTRICT x; 267 void anti_collapse(const CELTMode *m, celt_norm *X_, unsigned char *collapse_masks, int LM, int C, int size, 304 celt_norm *X; 363 static void intensity_stereo(const CELTMode *m, celt_norm * OPUS_RESTRICT X, const celt_norm * OPUS_RESTRICT Y, const celt_ener *bandE, int bandID, int N) 380 celt_norm r, l; 388 static void stereo_split(celt_norm * OPUS_RESTRICT X, celt_norm * OPUS_RESTRICT Y, int N [all...] |
arch.h | 98 typedef opus_val16 celt_norm; typedef 152 typedef float celt_norm; typedef
|
celt_decoder.c | 279 void celt_synthesis(const CELTMode *mode, celt_norm *X, celt_sig * out_syn[], 454 celt_norm *X; 456 VARDECL(celt_norm, X); 468 X = (celt_norm*)(out_syn[C-1]+overlap/2); 470 ALLOC(X, C*N, celt_norm); /**< Interleaved normalised MDCTs */ 493 X[boffs+j] = (celt_norm)((opus_int32)seed>>20); 720 celt_norm *X; 722 VARDECL(celt_norm, X); 975 X = (celt_norm*)(out_syn[CC-1]+overlap/2); 977 ALLOC(X, C*N, celt_norm); /**< Interleaved normalised MDCTs * [all...] |
celt.h | 220 void celt_synthesis(const CELTMode *mode, celt_norm *X, celt_sig * out_syn[],
|
celt_encoder.c | 537 static opus_val32 l1_metric(const celt_norm *tmp, int N, int LM, opus_val16 bias) 551 int *tf_res, int lambda, celt_norm *X, int N0, int LM, 560 VARDECL(celt_norm, tmp); 561 VARDECL(celt_norm, tmp_1); 572 ALLOC(tmp, (m->eBands[len]-m->eBands[len-1])<<LM, celt_norm); 573 ALLOC(tmp_1, (m->eBands[len]-m->eBands[len-1])<<LM, celt_norm); 754 static int alloc_trim_analysis(const CELTMode *m, const celt_norm *X, 838 static int stereo_analysis(const CELTMode *m, const celt_norm *X, [all...] |
/external/libopus/celt/mips/ |
vq_mipsr1.h | 40 static void normalise_residual(int * OPUS_RESTRICT iy, celt_norm * OPUS_RESTRICT X, int N, opus_val32 Ryy, opus_val16 gain); 41 static void exp_rotation(celt_norm *X, int len, int dir, int stride, int K, int spread); 42 static void renormalise_vector_mips(celt_norm *X, int N, opus_val16 gain, int arch); 45 static void exp_rotation1(celt_norm *X, int len, int stride, opus_val16 c, opus_val16 s) 49 celt_norm *Xptr; 54 celt_norm x1, x2; 63 celt_norm x1, x2; 76 void renormalise_vector_mips(celt_norm *X, int N, opus_val16 gain, int arch) 85 celt_norm *xptr = X;
|