OLD | NEW |
1 /*********************************************************************** | 1 /*********************************************************************** |
2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. | 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. |
3 Redistribution and use in source and binary forms, with or without | 3 Redistribution and use in source and binary forms, with or without |
4 modification, are permitted provided that the following conditions | 4 modification, are permitted provided that the following conditions |
5 are met: | 5 are met: |
6 - Redistributions of source code must retain the above copyright notice, | 6 - Redistributions of source code must retain the above copyright notice, |
7 this list of conditions and the following disclaimer. | 7 this list of conditions and the following disclaimer. |
8 - Redistributions in binary form must reproduce the above copyright | 8 - Redistributions in binary form must reproduce the above copyright |
9 notice, this list of conditions and the following disclaimer in the | 9 notice, this list of conditions and the following disclaimer in the |
10 documentation and/or other materials provided with the distribution. | 10 documentation and/or other materials provided with the distribution. |
(...skipping 23 matching lines...) Expand all Loading... |
34 | 34 |
35 void silk_find_pred_coefs_FIX( | 35 void silk_find_pred_coefs_FIX( |
36 silk_encoder_state_FIX *psEnc, /* I
/O encoder state
*/ | 36 silk_encoder_state_FIX *psEnc, /* I
/O encoder state
*/ |
37 silk_encoder_control_FIX *psEncCtrl, /* I
/O encoder control
*/ | 37 silk_encoder_control_FIX *psEncCtrl, /* I
/O encoder control
*/ |
38 const opus_int16 res_pitch[], /* I
Residual from pitch analysis
*/ | 38 const opus_int16 res_pitch[], /* I
Residual from pitch analysis
*/ |
39 const opus_int16 x[], /* I
Speech signal
*/ | 39 const opus_int16 x[], /* I
Speech signal
*/ |
40 opus_int condCoding /* I
The type of conditional coding to use
*/ | 40 opus_int condCoding /* I
The type of conditional coding to use
*/ |
41 ) | 41 ) |
42 { | 42 { |
43 opus_int i; | 43 opus_int i; |
44 opus_int32 invGains_Q16[ MAX_NB_SUBFR ], local_gains[ MAX_NB_SUBFR ],
Wght_Q15[ MAX_NB_SUBFR ]; | 44 opus_int32 invGains_Q16[ MAX_NB_SUBFR ], local_gains[ MAX_NB_SUBFR ]; |
45 opus_int16 NLSF_Q15[ MAX_LPC_ORDER ]; | 45 opus_int16 NLSF_Q15[ MAX_LPC_ORDER ]; |
46 const opus_int16 *x_ptr; | 46 const opus_int16 *x_ptr; |
47 opus_int16 *x_pre_ptr; | 47 opus_int16 *x_pre_ptr; |
48 VARDECL( opus_int16, LPC_in_pre ); | 48 VARDECL( opus_int16, LPC_in_pre ); |
49 opus_int32 tmp, min_gain_Q16, minInvGain_Q30; | 49 opus_int32 min_gain_Q16, minInvGain_Q30; |
50 opus_int LTP_corrs_rshift[ MAX_NB_SUBFR ]; | |
51 SAVE_STACK; | 50 SAVE_STACK; |
52 | 51 |
53 /* weighting for weighted least squares */ | 52 /* weighting for weighted least squares */ |
54 min_gain_Q16 = silk_int32_MAX >> 6; | 53 min_gain_Q16 = silk_int32_MAX >> 6; |
55 for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { | 54 for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { |
56 min_gain_Q16 = silk_min( min_gain_Q16, psEncCtrl->Gains_Q16[ i ] ); | 55 min_gain_Q16 = silk_min( min_gain_Q16, psEncCtrl->Gains_Q16[ i ] ); |
57 } | 56 } |
58 for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { | 57 for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { |
59 /* Divide to Q16 */ | 58 /* Divide to Q16 */ |
60 silk_assert( psEncCtrl->Gains_Q16[ i ] > 0 ); | 59 silk_assert( psEncCtrl->Gains_Q16[ i ] > 0 ); |
61 /* Invert and normalize gains, and ensure that maximum invGains_Q16 is w
ithin range of a 16 bit int */ | 60 /* Invert and normalize gains, and ensure that maximum invGains_Q16 is w
ithin range of a 16 bit int */ |
62 invGains_Q16[ i ] = silk_DIV32_varQ( min_gain_Q16, psEncCtrl->Gains_Q16[
i ], 16 - 2 ); | 61 invGains_Q16[ i ] = silk_DIV32_varQ( min_gain_Q16, psEncCtrl->Gains_Q16[
i ], 16 - 2 ); |
63 | 62 |
64 /* Ensure Wght_Q15 a minimum value 1 */ | 63 /* Limit inverse */ |
65 invGains_Q16[ i ] = silk_max( invGains_Q16[ i ], 363 ); | 64 invGains_Q16[ i ] = silk_max( invGains_Q16[ i ], 100 ); |
66 | 65 |
67 /* Square the inverted gains */ | 66 /* Square the inverted gains */ |
68 silk_assert( invGains_Q16[ i ] == silk_SAT16( invGains_Q16[ i ] ) ); | 67 silk_assert( invGains_Q16[ i ] == silk_SAT16( invGains_Q16[ i ] ) ); |
69 tmp = silk_SMULWB( invGains_Q16[ i ], invGains_Q16[ i ] ); | |
70 Wght_Q15[ i ] = silk_RSHIFT( tmp, 1 ); | |
71 | 68 |
72 /* Invert the inverted and normalized gains */ | 69 /* Invert the inverted and normalized gains */ |
73 local_gains[ i ] = silk_DIV32( ( (opus_int32)1 << 16 ), invGains_Q16[ i
] ); | 70 local_gains[ i ] = silk_DIV32( ( (opus_int32)1 << 16 ), invGains_Q16[ i
] ); |
74 } | 71 } |
75 | 72 |
76 ALLOC( LPC_in_pre, | 73 ALLOC( LPC_in_pre, |
77 psEnc->sCmn.nb_subfr * psEnc->sCmn.predictLPCOrder | 74 psEnc->sCmn.nb_subfr * psEnc->sCmn.predictLPCOrder |
78 + psEnc->sCmn.frame_length, opus_int16 ); | 75 + psEnc->sCmn.frame_length, opus_int16 ); |
79 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { | 76 if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { |
80 VARDECL( opus_int32, WLTP ); | 77 VARDECL( opus_int32, xXLTP_Q17 ); |
| 78 VARDECL( opus_int32, XXLTP_Q17 ); |
81 | 79 |
82 /**********/ | 80 /**********/ |
83 /* VOICED */ | 81 /* VOICED */ |
84 /**********/ | 82 /**********/ |
85 silk_assert( psEnc->sCmn.ltp_mem_length - psEnc->sCmn.predictLPCOrder >=
psEncCtrl->pitchL[ 0 ] + LTP_ORDER / 2 ); | 83 silk_assert( psEnc->sCmn.ltp_mem_length - psEnc->sCmn.predictLPCOrder >=
psEncCtrl->pitchL[ 0 ] + LTP_ORDER / 2 ); |
86 | 84 |
87 ALLOC( WLTP, psEnc->sCmn.nb_subfr * LTP_ORDER * LTP_ORDER, opus_int32 ); | 85 ALLOC( xXLTP_Q17, psEnc->sCmn.nb_subfr * LTP_ORDER, opus_int32 ); |
| 86 ALLOC( XXLTP_Q17, psEnc->sCmn.nb_subfr * LTP_ORDER * LTP_ORDER, opus_int
32 ); |
88 | 87 |
89 /* LTP analysis */ | 88 /* LTP analysis */ |
90 silk_find_LTP_FIX( psEncCtrl->LTPCoef_Q14, WLTP, &psEncCtrl->LTPredCodGa
in_Q7, | 89 silk_find_LTP_FIX( XXLTP_Q17, xXLTP_Q17, res_pitch, |
91 res_pitch, psEncCtrl->pitchL, Wght_Q15, psEnc->sCmn.subfr_length, | 90 psEncCtrl->pitchL, psEnc->sCmn.subfr_length, psEnc->sCmn.nb_subfr, p
sEnc->sCmn.arch ); |
92 psEnc->sCmn.nb_subfr, psEnc->sCmn.ltp_mem_length, LTP_corrs_rshift,
psEnc->sCmn.arch ); | |
93 | 91 |
94 /* Quantize LTP gain parameters */ | 92 /* Quantize LTP gain parameters */ |
95 silk_quant_LTP_gains( psEncCtrl->LTPCoef_Q14, psEnc->sCmn.indices.LTPInd
ex, &psEnc->sCmn.indices.PERIndex, | 93 silk_quant_LTP_gains( psEncCtrl->LTPCoef_Q14, psEnc->sCmn.indices.LTPInd
ex, &psEnc->sCmn.indices.PERIndex, |
96 &psEnc->sCmn.sum_log_gain_Q7, WLTP, psEnc->sCmn.mu_LTP_Q9, psEnc->sC
mn.LTPQuantLowComplexity, psEnc->sCmn.nb_subfr, | 94 &psEnc->sCmn.sum_log_gain_Q7, &psEncCtrl->LTPredCodGain_Q7, XXLTP_Q1
7, xXLTP_Q17, psEnc->sCmn.subfr_length, psEnc->sCmn.nb_subfr, psEnc->sCmn.arch )
; |
97 psEnc->sCmn.arch); | |
98 | 95 |
99 /* Control LTP scaling */ | 96 /* Control LTP scaling */ |
100 silk_LTP_scale_ctrl_FIX( psEnc, psEncCtrl, condCoding ); | 97 silk_LTP_scale_ctrl_FIX( psEnc, psEncCtrl, condCoding ); |
101 | 98 |
102 /* Create LTP residual */ | 99 /* Create LTP residual */ |
103 silk_LTP_analysis_filter_FIX( LPC_in_pre, x - psEnc->sCmn.predictLPCOrde
r, psEncCtrl->LTPCoef_Q14, | 100 silk_LTP_analysis_filter_FIX( LPC_in_pre, x - psEnc->sCmn.predictLPCOrde
r, psEncCtrl->LTPCoef_Q14, |
104 psEncCtrl->pitchL, invGains_Q16, psEnc->sCmn.subfr_length, psEnc->sC
mn.nb_subfr, psEnc->sCmn.predictLPCOrder ); | 101 psEncCtrl->pitchL, invGains_Q16, psEnc->sCmn.subfr_length, psEnc->sC
mn.nb_subfr, psEnc->sCmn.predictLPCOrder ); |
105 | 102 |
106 } else { | 103 } else { |
107 /************/ | 104 /************/ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 silk_process_NLSFs( &psEnc->sCmn, psEncCtrl->PredCoef_Q12, NLSF_Q15, psEnc->
sCmn.prev_NLSFq_Q15 ); | 136 silk_process_NLSFs( &psEnc->sCmn, psEncCtrl->PredCoef_Q12, NLSF_Q15, psEnc->
sCmn.prev_NLSFq_Q15 ); |
140 | 137 |
141 /* Calculate residual energy using quantized LPC coefficients */ | 138 /* Calculate residual energy using quantized LPC coefficients */ |
142 silk_residual_energy_FIX( psEncCtrl->ResNrg, psEncCtrl->ResNrgQ, LPC_in_pre,
psEncCtrl->PredCoef_Q12, local_gains, | 139 silk_residual_energy_FIX( psEncCtrl->ResNrg, psEncCtrl->ResNrgQ, LPC_in_pre,
psEncCtrl->PredCoef_Q12, local_gains, |
143 psEnc->sCmn.subfr_length, psEnc->sCmn.nb_subfr, psEnc->sCmn.predictLPCOr
der, psEnc->sCmn.arch ); | 140 psEnc->sCmn.subfr_length, psEnc->sCmn.nb_subfr, psEnc->sCmn.predictLPCOr
der, psEnc->sCmn.arch ); |
144 | 141 |
145 /* Copy to prediction struct for use in next frame for interpolation */ | 142 /* Copy to prediction struct for use in next frame for interpolation */ |
146 silk_memcpy( psEnc->sCmn.prev_NLSFq_Q15, NLSF_Q15, sizeof( psEnc->sCmn.prev_
NLSFq_Q15 ) ); | 143 silk_memcpy( psEnc->sCmn.prev_NLSFq_Q15, NLSF_Q15, sizeof( psEnc->sCmn.prev_
NLSFq_Q15 ) ); |
147 RESTORE_STACK; | 144 RESTORE_STACK; |
148 } | 145 } |
OLD | NEW |