/external/speex/include/speex/ |
speex_config_types.h | 5 typedef short spx_int16_t; typedef
|
speex_types.h | 31 typedef _G_int16_t spx_int16_t; typedef 34 typedef short spx_int16_t; typedef 41 typedef short spx_int16_t; typedef 47 typedef __int16 spx_int16_t; typedef 54 typedef SInt16 spx_int16_t; typedef 62 typedef int16_t spx_int16_t; typedef 71 typedef int16_t spx_int16_t; typedef 79 typedef short spx_int16_t; typedef 87 typedef short spx_int16_t; typedef 96 typedef short spx_int16_t; typedef 101 typedef signed short spx_int16_t; typedef 108 typedef short spx_int16_t; typedef 115 typedef short spx_int16_t; typedef [all...] |
speex_echo.h | 101 void speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out); 104 void speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out, spx_int32_t *Yout); 112 void speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out); 118 void speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play); 156 void speex_decorrelate(SpeexDecorrState *st, const spx_int16_t *in, spx_int16_t *out, int strength) [all...] |
speex_preprocess.h | 77 int speex_preprocess_run(SpeexPreprocessState *st, spx_int16_t *x); 80 int speex_preprocess(SpeexPreprocessState *st, spx_int16_t *x, spx_int32_t *echo); 86 void speex_preprocess_estimate_update(SpeexPreprocessState *st, spx_int16_t *x);
|
speex_stereo.h | 75 void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits); 81 void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *stereo);
|
speex_resampler.h | 80 #define spx_int16_t short macro 184 const spx_int16_t *in, 186 spx_int16_t *out, 214 const spx_int16_t *in, 216 spx_int16_t *out,
|
speex.h | 325 int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits); 371 int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out);
|
/external/speex/libspeex/ |
kiss_fft.h | 36 # define kiss_fft_scalar spx_int16_t
|
speex.c | 92 spx_int16_t short_in[MAX_IN_SAMPLES]; 101 short_in[i] = (spx_int16_t)floor(.5+in[i]); 107 EXPORT int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits) 119 spx_int16_t short_out[MAX_IN_SAMPLES]; 128 EXPORT int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out) 141 EXPORT int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits) 157 EXPORT int speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out) 172 out[i] = (spx_int16_t)floor(.5+float_out[i]);
|
pseudofloat.h | 55 spx_int16_t m; 56 spx_int16_t e; 188 r.m = (spx_int16_t)((spx_int32_t)(a).m*(b).m>>15); 211 r.m = (spx_int16_t)((spx_int32_t)(a).m*(b).m>>15); 225 static inline spx_int16_t FLOAT_EXTRACT16(spx_float_t a)
|
stereo.c | 146 EXPORT void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits) 248 EXPORT void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *_stereo) 266 spx_int16_t tmp=data[i]; 269 data[2*i] = (spx_int16_t)MULT16_16_P14(stereo->smooth_left, tmp); 270 data[2*i+1] = (spx_int16_t)MULT16_16_P14(stereo->smooth_right, tmp);
|
mdf.c | 188 spx_int16_t *play_buf; 193 static inline void filter_dc_notch16(const spx_int16_t *in, spx_word16_t radius, spx_word16_t *out, int len, spx_mem_t *mem, int stride) 389 static void dump_audio(const spx_int16_t *rec, const spx_int16_t *play, const spx_int16_t *out, int len) 395 fwrite(rec, sizeof(spx_int16_t), len, rFile); 396 fwrite(play, sizeof(spx_int16_t), len, pFile); 397 fwrite(out, sizeof(spx_int16_t), len, oFile); 522 st->play_buf = (spx_int16_t*)speex_alloc(K*(PLAYBACK_DELAY+1)*st->frame_size*sizeof(spx_int16_t)); [all...] |
math_approx.h | 64 static inline spx_int16_t spx_ilog2(spx_uint32_t x) 94 static inline spx_int16_t spx_ilog4(spx_uint32_t x)
|
jitter.c | 87 spx_int16_t counts[MAX_TIMINGS]; /**< Order the packets were put in (will be used for short-term estimate) */ 97 static void tb_add(struct TimingBuffer *tb, spx_int16_t timing) 175 static spx_int16_t compute_opt_delay(JitterBuffer *jitter) 178 spx_int16_t opt=0; 356 static void shift_timings(JitterBuffer *jitter, spx_int16_t amount) 470 spx_int16_t opt; 718 spx_int16_t opt = compute_opt_delay(jitter);
|
scal.c | 137 EXPORT void speex_decorrelate(SpeexDecorrState *st, const spx_int16_t *in, spx_int16_t *out, int strength)
|
resample.c | 849 EXPORT int speex_resampler_process_int(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_int16_t *in, spx_uint32_t *in_len, spx_int16_t *out, spx_uint32_t *out_len) [all...] |
arch.h | 91 typedef spx_int16_t spx_word16_t;
|
preprocess.c | 618 static void preprocess_analysis(SpeexPreprocessState *st, spx_int16_t *x) 721 EXPORT int speex_preprocess(SpeexPreprocessState *st, spx_int16_t *x, spx_int32_t *echo) 726 EXPORT int speex_preprocess_run(SpeexPreprocessState *st, spx_int16_t *x) [all...] |
/external/chromium_org/content/browser/speech/ |
audio_encoder.cc | 152 spx_int16_t* src_buffer = 153 const_cast<spx_int16_t*>(raw_audio.SamplesData16());
|