HomeSort by relevance Sort by last modified time
    Searched refs:opus_int16 (Results 101 - 118 of 118) sorted by null

1 2 3 45

  /external/chromium_org/third_party/opus/src/silk/fixed/
residual_energy16_FIX.c 36 const opus_int16 *c, /* I Prediction vector */
burg_modified_FIX.c 48 const opus_int16 x[], /* I Input signal, length: nb_subfr * ( D + subfr_length ) */
57 const opus_int16 *x_ptr;
  /external/chromium_org/third_party/opus/src/src/
opus_decoder.c 73 static inline opus_int16 SAT16(opus_int32 x) {
74 return x > 32767 ? 32767 : x < -32768 ? -32768 : (opus_int16)x;
204 VARDECL(opus_int16, pcm_silk);
285 ALLOC(pcm_silk, IMAX(F10, frame_size)*st->channels, opus_int16);
292 opus_int16 *pcm_ptr = pcm_silk;
810 VARDECL(opus_int16, out);
814 ALLOC(out, frame_size*st->channels, opus_int16);
830 opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec)
opus_multistream.c 366 const opus_int16 *short_src;
368 short_src = (const opus_int16 *)src;
421 const opus_int16 *pcm,
844 opus_int16 *short_dst;
846 short_dst = (opus_int16*)dst;
870 opus_int16 *pcm,
891 opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec)
opus_encoder.c 75 opus_int16 hybrid_stereo_width_Q14;
869 const opus_int16 *pcm_silk;
871 VARDECL(opus_int16, pcm_silk);
872 ALLOC(pcm_silk, st->channels*frame_size, opus_int16);
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
bands.c 51 static opus_int16 bitexact_cos(opus_int16 x)
54 opus_int16 x2;
81 const opus_int16 *eBands = m->eBands;
117 const opus_int16 *eBands = m->eBands;
139 const opus_int16 *eBands = m->eBands;
159 const opus_int16 *eBands = m->eBands;
178 const opus_int16 *eBands = m->eBands;
400 const opus_int16 * OPUS_RESTRICT eBands = m->eBands;
609 static const opus_int16 exp2_table8[8]
    [all...]
kiss_fft.c 456 opus_int16 *f,
459 opus_int16 * factors,
491 int kf_factor(int n,opus_int16 * facbuf)
557 opus_int16 *bitrev;
583 st->bitrev = bitrev = (opus_int16*)KISS_FFT_MALLOC(sizeof(opus_int16)*nfft);
603 opus_free((opus_int16*)cfg->bitrev);
fixed_generic.h 70 #define SHL16(a,shift) ((opus_int16)((opus_uint16)(a)<<(shift)))
static_modes_float.h 39 static const opus_int16 logN400[21] = {
45 static const opus_int16 cache_index50[105] = {
343 static const opus_int16 fft_bitrev480[480] = {
381 static const opus_int16 fft_bitrev240[240] = {
403 static const opus_int16 fft_bitrev120[120] = {
417 static const opus_int16 fft_bitrev60[60] = {
arch.h 87 typedef opus_int16 opus_val16;
celt.c     [all...]
cwrs.c 568 void get_required_bits(opus_int16 *_bits,int _n,int _maxk,int _frac){
quant_bands.c 363 opus_int16 frac = 1<<fine_quant[i];
  /external/chromium_org/third_party/opus/src/silk/
control_codec.c 149 opus_int16 x_buf_API_fs_Hz[ ( 2 * MAX_FRAME_LENGTH_MS + LA_SHAPE_MS ) * MAX_API_FS_KHZ ];
152 opus_int16 *x_bufFIX = psEnc->x_buf;
154 opus_int16 x_bufFIX[ 2 * MAX_FRAME_LENGTH + LA_SHAPE_MAX ];
enc_API.c 141 const opus_int16 *samplesIn, /* I Speech sample input vector */
153 opus_int16 buf[ MAX_FRAME_LENGTH_MS * MAX_API_FS_KHZ ];
277 buf[ n ] = (opus_int16)silk_RSHIFT_ROUND( sum, 1 );
294 silk_memcpy(buf, samplesIn, nSamplesFromInput*sizeof(opus_int16));
418 silk_memcpy( psEnc->state_Fxx[ 0 ].sCmn.inputBuf, psEnc->sStereo.sMid, 2 * sizeof( opus_int16 ) );
419 silk_memcpy( psEnc->sStereo.sMid, &psEnc->state_Fxx[ 0 ].sCmn.inputBuf[ psEnc->state_Fxx[ 0 ].sCmn.frame_length ], 2 * sizeof( opus_int16 ) );
encode_indices.c 45 opus_int16 ec_ix[ MAX_LPC_ORDER ];
  /external/chromium_org/third_party/opus/src/silk/float/
find_pred_coefs_FLP.c 46 opus_int16 NLSF_Q15[ MAX_LPC_ORDER ];
encode_frame_FLP.c 94 opus_int16 gainMult_Q8;
95 opus_int16 ec_prevLagIndex_copy;

Completed in 140 milliseconds

1 2 3 45