/external/libopus/silk/ |
D | encode_pulses.c | 64 …opus_int8 pulses[], /* I quantization indices … in silk_encode_pulses() argument 91 silk_memset( &pulses[ frame_length ], 0, SHELL_CODEC_FRAME_LENGTH * sizeof(opus_int8)); in silk_encode_pulses() 98 abs_pulses[i+0] = ( opus_int )silk_abs( pulses[ i + 0 ] ); in silk_encode_pulses() 99 abs_pulses[i+1] = ( opus_int )silk_abs( pulses[ i + 1 ] ); in silk_encode_pulses() 100 abs_pulses[i+2] = ( opus_int )silk_abs( pulses[ i + 2 ] ); in silk_encode_pulses() 101 abs_pulses[i+3] = ( opus_int )silk_abs( pulses[ i + 3 ] ); in silk_encode_pulses() 187 pulses_ptr = &pulses[ i * SHELL_CODEC_FRAME_LENGTH ]; in silk_encode_pulses() 204 silk_encode_signs( psRangeEnc, pulses, frame_length, signalType, quantOffsetType, sum_pulses ); in silk_encode_pulses()
|
D | decode_pulses.c | 39 …opus_int pulses[], /* O Excitation signal … in silk_decode_pulses() argument 85 …silk_shell_decoder( &pulses[ silk_SMULBB( i, SHELL_CODEC_FRAME_LENGTH ) ], psRangeDec, sum_pulses[… in silk_decode_pulses() 87 …silk_memset( &pulses[ silk_SMULBB( i, SHELL_CODEC_FRAME_LENGTH ) ], 0, SHELL_CODEC_FRAME_LENGTH * … in silk_decode_pulses() 97 pulses_ptr = &pulses[ silk_SMULBB( i, SHELL_CODEC_FRAME_LENGTH ) ]; in silk_decode_pulses() 114 silk_decode_signs( psRangeDec, pulses, frame_length, signalType, quantOffsetType, sum_pulses ); in silk_decode_pulses()
|
D | decode_frame.c | 50 VARDECL( opus_int, pulses ); in silk_decode_frame() 55 ALLOC( pulses, (L + SHELL_CODEC_FRAME_LENGTH - 1) & in silk_decode_frame() 73 silk_decode_pulses( psRangeDec, pulses, psDec->indices.signalType, in silk_decode_frame() 84 silk_decode_core( psDec, psDecCtrl, pOut, pulses ); in silk_decode_frame()
|
D | code_signs.c | 43 …const opus_int8 pulses[], /* I pulse signal … in silk_encode_signs() argument 56 q_ptr = pulses; in silk_encode_signs() 77 …opus_int pulses[], /* I/O pulse signal … in silk_decode_signs() argument 90 q_ptr = pulses; in silk_decode_signs()
|
D | main.h | 109 …const opus_int8 pulses[], /* I pulse signal … 119 …opus_int pulses[], /* I/O pulse signal … 152 …opus_int8 pulses[], /* I quantization indices … 237 …opus_int8 pulses[], /* O Quantized pulse si… 256 …opus_int8 pulses[], /* O Quantized pulse si… 400 …const opus_int pulses[ MAX_FRAME_LENGTH ] /* I Pulse signal … 406 …opus_int pulses[], /* O Excitation signal …
|
D | NSQ.c | 53 opus_int8 pulses[], /* O */ 76 …opus_int8 pulses[], /* O Quantized pulse si… in silk_NSQ() argument 153 …silk_noise_shape_quantizer( NSQ, psIndices->signalType, x_sc_Q10, pulses, pxq, sLTP_Q15, A_Q12, B_… in silk_NSQ() 158 pulses += psEncC->subfr_length; in silk_NSQ() 179 opus_int8 pulses[], /* O */ in silk_noise_shape_quantizer() argument 339 pulses[ i ] = (opus_int8)silk_RSHIFT_ROUND( q1_Q10, 10 ); in silk_noise_shape_quantizer() 366 NSQ->rand_seed = silk_ADD32_ovflw( NSQ->rand_seed, pulses[ i ] ); in silk_noise_shape_quantizer()
|
D | NSQ_del_dec.c | 85 opus_int8 pulses[], /* O */ 114 …opus_int8 pulses[], /* O Quantized pulse si… in silk_NSQ_del_dec() argument 233 … pulses[ i - decisionDelay ] = (opus_int8)silk_RSHIFT_ROUND( psDD->Q_Q10[ last_smple_idx ], 10 ); in silk_NSQ_del_dec() 257 …silk_noise_shape_quantizer_del_dec( NSQ, psDelDec, psIndices->signalType, x_sc_Q10, pulses, pxq, s… in silk_NSQ_del_dec() 263 pulses += psEncC->subfr_length; in silk_NSQ_del_dec() 284 … pulses[ i - decisionDelay ] = (opus_int8)silk_RSHIFT_ROUND( psDD->Q_Q10[ last_smple_idx ], 10 ); in silk_NSQ_del_dec() 311 opus_int8 pulses[], /* O */ in silk_noise_shape_quantizer_del_dec() argument 600 … pulses[ i - decisionDelay ] = (opus_int8)silk_RSHIFT_ROUND( psDD->Q_Q10[ last_smple_idx ], 10 ); in silk_noise_shape_quantizer_del_dec()
|
D | decode_core.c | 42 …const opus_int pulses[ MAX_FRAME_LENGTH ] /* I Pulse signal … in silk_decode_core() 74 psDec->exc_Q14[ i ] = silk_LSHIFT( (opus_int32)pulses[ i ], 14 ); in silk_decode_core() 86 rand_seed = silk_ADD32_ovflw( rand_seed, pulses[ i ] ); in silk_decode_core()
|
D | dec_API.c | 199 opus_int pulses[ MAX_FRAME_LENGTH ]; in silk_Decode() local 215 … silk_decode_pulses( psRangeDec, pulses, channel_state[ n ].indices.signalType, in silk_Decode()
|
D | structs.h | 193 opus_int8 pulses[ MAX_FRAME_LENGTH ]; member
|
/external/libopus/celt/ |
D | rate.h | 80 static OPUS_INLINE int pulses2bits(const CELTMode *m, int band, int LM, int pulses) in pulses2bits() argument 86 return pulses == 0 ? 0 : cache[pulses]+1; in pulses2bits() 99 …opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM,…
|
D | bands.h | 102 … celt_norm * X, celt_norm * Y, unsigned char *collapse_masks, const celt_ener *bandE, int *pulses, 108 opus_val16 *prev2logE, int *pulses, opus_uint32 seed);
|
D | celt_decoder.c | 664 VARDECL(int, pulses); 885 ALLOC(pulses, nbEBands, int); 889 alloc_trim, &intensity, &dual_stereo, bits, &balance, pulses, 899 NULL, pulses, shortBlocks, spread_decision, dual_stereo, intensity, tf_res, 912 st->start, st->end, oldBandE, oldLogE, oldLogE2, pulses, st->rng);
|
D | bands.c | 260 opus_val16 *prev2logE, int *pulses, opus_uint32 seed) in anti_collapse() argument 275 depth = (1+pulses[i])/((m->eBands[i+1]-m->eBands[i])<<LM); in anti_collapse() 1356 … celt_norm *X_, celt_norm *Y_, unsigned char *collapse_masks, const celt_ener *bandE, int *pulses, in quant_all_bands() argument 1432 b = IMAX(0, IMIN(16383, IMIN(remaining_bits+1,pulses[i]+curr_balance))); in quant_all_bands() 1509 balance += pulses[i] + tell; in quant_all_bands()
|
D | rate.c | 527 …opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM,… in compute_allocation() argument 634 pulses, ebits, fine_priority, C, LM, ec, encode, prev, signalBandwidth); in compute_allocation()
|
D | celt_encoder.c | 1261 VARDECL(int, pulses); in celt_encode_with_ec() 1926 ALLOC(pulses, nbEBands, int); in celt_encode_with_ec() 1954 alloc_trim, &st->intensity, &dual_stereo, bits, &balance, pulses, in celt_encode_with_ec() 1966 bandE, pulses, shortBlocks, st->spread_decision, dual_stereo, st->intensity, tf_res, in celt_encode_with_ec() 1993 st->start, st->end, oldBandE, oldLogE, oldLogE2, pulses, st->rng); in celt_encode_with_ec()
|
/external/libopus/silk/float/ |
D | wrappers_FLP.c | 100 …opus_int8 pulses[], /* O Quantized pulse signal… in silk_NSQ_wrapper_FLP() argument 163 … silk_NSQ_del_dec( &psEnc->sCmn, psNSQ, psIndices, x_Q3, pulses, PredCoef_Q12[ 0 ], LTPCoef_Q14, in silk_NSQ_wrapper_FLP() 166 silk_NSQ( &psEnc->sCmn, psNSQ, psIndices, x_Q3, pulses, PredCoef_Q12[ 0 ], LTPCoef_Q14, in silk_NSQ_wrapper_FLP()
|
D | encode_frame_FLP.c | 191 …_wrapper_FLP( psEnc, &sEncCtrl, &psEnc->sCmn.indices, &psEnc->sCmn.sNSQ, psEnc->sCmn.pulses, xfw ); in silk_encode_frame_FLP() 202 psEnc->sCmn.pulses, psEnc->sCmn.frame_length ); in silk_encode_frame_FLP()
|
D | main_FLP.h | 304 …opus_int8 pulses[], /* O Quantized pulse signal…
|
/external/libopus/silk/fixed/ |
D | encode_frame_FIX.c | 197 …ilk_NSQ_del_dec( &psEnc->sCmn, &psEnc->sCmn.sNSQ, &psEnc->sCmn.indices, xfw_Q3, psEnc->sCmn.pulses, in silk_encode_frame_FIX() 201 … silk_NSQ( &psEnc->sCmn, &psEnc->sCmn.sNSQ, &psEnc->sCmn.indices, xfw_Q3, psEnc->sCmn.pulses, in silk_encode_frame_FIX() 215 psEnc->sCmn.pulses, psEnc->sCmn.frame_length ); in silk_encode_frame_FIX()
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/media/ |
D | MochiKit.packed.js | 6874 return _749(1-v.Transitions.pulse(pos,_743.pulses));
|