HomeSort by relevance Sort by last modified time
    Searched refs:warping_Q16 (Results 1 - 17 of 17) sorted by null

  /external/libopus/silk/fixed/arm/
warped_autocorrelation_FIX_arm.h 40 const opus_int warping_Q16, /* I Warping coefficient */
47 # define silk_warped_autocorrelation_FIX(corr, scale, input, warping_Q16, length, order, arch) \
48 ((void)(arch), PRESUME_NEON(silk_warped_autocorrelation_FIX)(corr, scale, input, warping_Q16, length, order))
57 # define silk_warped_autocorrelation_FIX(corr, scale, input, warping_Q16, length, order, arch) \
58 ((*SILK_WARPED_AUTOCORRELATION_FIX_IMPL[(arch)&OPUS_ARCHMASK])(corr, scale, input, warping_Q16, length, order))
61 # define silk_warped_autocorrelation_FIX(corr, scale, input, warping_Q16, length, order, arch) \
62 ((void)(arch), silk_warped_autocorrelation_FIX_neon(corr, scale, input, warping_Q16, length, order))
warped_autocorrelation_FIX_neon_intr.c 64 const opus_int warping_Q16, /* I Warping coefficient */
70 silk_warped_autocorrelation_FIX_c( corr, scale, input, warping_Q16, length, order );
141 state_QST[ 1 ][ i ] = silk_SMLAWB( state_QST[ 1 ][ i + 1 ], state_QST[ 0 ][ i ] - state_QST[ 0 ][ i + 1 ], warping_Q16 );
151 const int32x4_t warping_Q16_s32x4 = vdupq_n_s32( warping_Q16 << 15 );
255 silk_warped_autocorrelation_FIX_c( corr_c, &scale_c, input, warping_Q16, length, order );
  /external/libopus/silk/fixed/mips/
warped_autocorrelation_FIX_mipsr1.h 49 const opus_int warping_Q16, /* I Warping coefficient */
82 tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 );
85 tmp4_QS = silk_SMLAWB( tmp1_QS, tmp2_QS - tmp3_QS, warping_Q16 );
88 tmp6_QS = silk_SMLAWB( tmp3_QS, tmp4_QS - tmp5_QS, warping_Q16 );
91 tmp8_QS = silk_SMLAWB( tmp5_QS, tmp6_QS - tmp7_QS, warping_Q16 );
96 tmp1_QS = silk_SMLAWB( state_QS[ i + 1 ], state_QS[ i + 2 ] - tmp2_QS, warping_Q16 );
99 tmp3_QS = silk_SMLAWB( tmp2_QS, tmp1_QS - tmp4_QS, warping_Q16 );
102 tmp5_QS = silk_SMLAWB( tmp4_QS, tmp3_QS - tmp6_QS, warping_Q16 );
105 tmp7_QS = silk_SMLAWB( tmp6_QS, tmp5_QS - tmp8_QS, warping_Q16 );
126 tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 );
    [all...]
noise_shape_analysis_FIX_mipsr1.h 43 opus_int k, i, nSamples, Qnrg, b_Q14, warping_Q16, scale = 0;
144 if( psEnc->sCmn.warping_Q16 > 0 ) {
146 warping_Q16 = silk_SMLAWB( psEnc->sCmn.warping_Q16, (opus_int32)psEncCtrl->coding_quality_Q14, SILK_FIX_CONST( 0.01, 18 ) );
148 warping_Q16 = 0;
170 if( psEnc->sCmn.warping_Q16 > 0 ) {
172 silk_warped_autocorrelation_FIX( auto_corr, &scale, x_windowed, warping_Q16, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder, arch );
205 if( psEnc->sCmn.warping_Q16 > 0 ) {
207 gain_mult_Q16 = warped_gain( AR2_Q24, warping_Q16, psEnc->sCmn.shapingLPCOrder );
235 limit_warped_coefs( AR2_Q24, AR1_Q24, warping_Q16, SILK_FIX_CONST( 3.999, 24 ), psEnc->sCmn.shapingLPCOrder )
    [all...]
  /external/libopus/silk/fixed/
warped_autocorrelation_FIX.c 44 const opus_int warping_Q16, /* I Warping coefficient */
64 tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 );
68 tmp1_QS = silk_SMLAWB( state_QS[ i + 1 ], state_QS[ i + 2 ] - tmp2_QS, warping_Q16 );
noise_shape_analysis_FIX.c 149 opus_int k, i, nSamples, nSegs, Qnrg, b_Q14, warping_Q16, scale = 0;
237 if( psEnc->sCmn.warping_Q16 > 0 ) {
239 warping_Q16 = silk_SMLAWB( psEnc->sCmn.warping_Q16, (opus_int32)psEncCtrl->coding_quality_Q14, SILK_FIX_CONST( 0.01, 18 ) );
241 warping_Q16 = 0;
263 if( psEnc->sCmn.warping_Q16 > 0 ) {
265 silk_warped_autocorrelation_FIX( auto_corr, &scale, x_windowed, warping_Q16, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder, arch );
297 if( psEnc->sCmn.warping_Q16 > 0 ) {
299 gain_mult_Q16 = warped_gain( AR_Q24, warping_Q16, psEnc->sCmn.shapingLPCOrder );
317 if( psEnc->sCmn.warping_Q16 > 0 )
    [all...]
main_FIX.h 114 const opus_int warping_Q16, /* I Warping coefficient */
120 #define silk_warped_autocorrelation_FIX(corr, scale, input, warping_Q16, length, order, arch) \
121 ((void)(arch), silk_warped_autocorrelation_FIX_c(corr, scale, input, warping_Q16, length, order))
encode_frame_FIX.c 193 if( psEnc->sCmn.nStatesDelayedDecision > 1 || psEnc->sCmn.warping_Q16 > 0 ) {
426 if( psEnc->sCmn.nStatesDelayedDecision > 1 || psEnc->sCmn.warping_Q16 > 0 ) {
  /external/libopus/silk/
control_codec.c 325 psEncC->warping_Q16 = 0;
335 psEncC->warping_Q16 = 0;
345 psEncC->warping_Q16 = 0;
355 psEncC->warping_Q16 = 0;
365 psEncC->warping_Q16 = psEncC->fs_kHz * SILK_FIX_CONST( WARPING_MULTIPLIER, 16 );
375 psEncC->warping_Q16 = psEncC->fs_kHz * SILK_FIX_CONST( WARPING_MULTIPLIER, 16 );
385 psEncC->warping_Q16 = psEncC->fs_kHz * SILK_FIX_CONST( WARPING_MULTIPLIER, 16 );
396 silk_assert( psEncC->warping_Q16 <= 32767 );
NSQ_del_dec.c 110 opus_int warping_Q16, /* I */
269 psEncC->predictLPCOrder, psEncC->warping_Q16, psEncC->nStatesDelayedDecision, &smpl_buf_idx, decisionDelay, psEncC->arch );
341 opus_int warping_Q16, /* I */
424 tmp2 = silk_SMLAWB( psDD->Diff_Q14, psDD->sAR2_Q14[ 0 ], warping_Q16 );
426 tmp1 = silk_SMLAWB( psDD->sAR2_Q14[ 0 ], psDD->sAR2_Q14[ 1 ] - tmp2, warping_Q16 );
433 tmp2 = silk_SMLAWB( psDD->sAR2_Q14[ j - 1 ], psDD->sAR2_Q14[ j + 0 ] - tmp1, warping_Q16 );
437 tmp1 = silk_SMLAWB( psDD->sAR2_Q14[ j + 0 ], psDD->sAR2_Q14[ j + 1 ] - tmp2, warping_Q16 );
    [all...]
structs.h 178 opus_int warping_Q16; /* Warping parameter for warped noise shaping */
  /external/libopus/silk/arm/
arm_silk_map.c 111 const opus_int warping_Q16, /* I Warping coefficient */
NSQ_del_dec_neon_intr.c 110 opus_int warping_Q16, /* I */
390 psEncC->predictLPCOrder, psEncC->warping_Q16, psEncC->nStatesDelayedDecision, &smpl_buf_idx, decisionDelay );
    [all...]
  /external/libopus/silk/float/
noise_shape_analysis_FLP.c 232 warping = (silk_float)psEnc->sCmn.warping_Q16 / 65536.0f + 0.01f * psEncCtrl->coding_quality;
252 if( psEnc->sCmn.warping_Q16 > 0 ) {
269 if( psEnc->sCmn.warping_Q16 > 0 ) {
277 if( psEnc->sCmn.warping_Q16 > 0 ) {
wrappers_FLP.c 163 if( psEnc->sCmn.nStatesDelayedDecision > 1 || psEnc->sCmn.warping_Q16 > 0 ) {
  /external/libopus/silk/mips/
NSQ_del_dec_mipsr1.h 62 opus_int warping_Q16, /* I */
193 tmp2 = silk_SMLAWB( psLPC_Q14[ 0 ], psDD->sAR2_Q14[ 0 ], warping_Q16 );
195 tmp1 = silk_SMLAWB( psDD->sAR2_Q14[ 0 ], psDD->sAR2_Q14[ 1 ] - tmp2, warping_Q16 );
207 tmp2 = silk_SMLAWB( prev, cur - tmp1, warping_Q16 );
212 tmp1 = silk_SMLAWB( cur, next - tmp2, warping_Q16 );
  /external/libopus/silk/x86/
NSQ_del_dec_sse.c 108 opus_int warping_Q16, /* I */
266 psEncC->predictLPCOrder, psEncC->warping_Q16, psEncC->nStatesDelayedDecision, &smpl_buf_idx, decisionDelay );
335 opus_int warping_Q16, /* I */
516 tmp2 = silk_SMLAWB( psLPC_Q14[ 0 ], psDD->sAR2_Q14[ 0 ], warping_Q16 );
518 tmp1 = silk_SMLAWB( psDD->sAR2_Q14[ 0 ], psDD->sAR2_Q14[ 1 ] - tmp2, warping_Q16 );
525 tmp2 = silk_SMLAWB( psDD->sAR2_Q14[ j - 1 ], psDD->sAR2_Q14[ j + 0 ] - tmp1, warping_Q16 );
529 tmp1 = silk_SMLAWB( psDD->sAR2_Q14[ j + 0 ], psDD->sAR2_Q14[ j + 1 ] - tmp2, warping_Q16 );
    [all...]

Completed in 135 milliseconds