decode_core.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /***********************************************************************
  2. Copyright (c) 2006-2011, Skype Limited. All rights reserved.
  3. Redistribution and use in source and binary forms, with or without
  4. modification, are permitted provided that the following conditions
  5. are met:
  6. - Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. - Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. - Neither the name of Internet Society, IETF or IETF Trust, nor the
  12. names of specific contributors, may be used to endorse or promote
  13. products derived from this software without specific prior written
  14. permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  19. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE.
  26. ***********************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. #include "config.h"
  29. #endif
  30. #include "main.h"
  31. #include "stack_alloc.h"
  32. /**********************************************************/
  33. /* Core decoder. Performs inverse NSQ operation LTP + LPC */
  34. /**********************************************************/
  35. void silk_decode_core(
  36. silk_decoder_state *psDec, /* I/O Decoder state */
  37. silk_decoder_control *psDecCtrl, /* I Decoder control */
  38. opus_int16 xq[], /* O Decoded speech */
  39. const opus_int16 pulses[ MAX_FRAME_LENGTH ], /* I Pulse signal */
  40. int arch /* I Run-time architecture */
  41. )
  42. {
  43. opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType;
  44. opus_int16 *A_Q12, *B_Q14, *pxq, A_Q12_tmp[ MAX_LPC_ORDER ];
  45. VARDECL( opus_int16, sLTP );
  46. VARDECL( opus_int32, sLTP_Q15 );
  47. opus_int32 LTP_pred_Q13, LPC_pred_Q10, Gain_Q10, inv_gain_Q31, gain_adj_Q16, rand_seed, offset_Q10;
  48. opus_int32 *pred_lag_ptr, *pexc_Q14, *pres_Q14;
  49. VARDECL( opus_int32, res_Q14 );
  50. VARDECL( opus_int32, sLPC_Q14 );
  51. SAVE_STACK;
  52. silk_assert( psDec->prev_gain_Q16 != 0 );
  53. ALLOC( sLTP, psDec->ltp_mem_length, opus_int16 );
  54. ALLOC( sLTP_Q15, psDec->ltp_mem_length + psDec->frame_length, opus_int32 );
  55. ALLOC( res_Q14, psDec->subfr_length, opus_int32 );
  56. ALLOC( sLPC_Q14, psDec->subfr_length + MAX_LPC_ORDER, opus_int32 );
  57. offset_Q10 = silk_Quantization_Offsets_Q10[ psDec->indices.signalType >> 1 ][ psDec->indices.quantOffsetType ];
  58. if( psDec->indices.NLSFInterpCoef_Q2 < 1 << 2 ) {
  59. NLSF_interpolation_flag = 1;
  60. } else {
  61. NLSF_interpolation_flag = 0;
  62. }
  63. /* Decode excitation */
  64. rand_seed = psDec->indices.Seed;
  65. for( i = 0; i < psDec->frame_length; i++ ) {
  66. rand_seed = silk_RAND( rand_seed );
  67. psDec->exc_Q14[ i ] = silk_LSHIFT( (opus_int32)pulses[ i ], 14 );
  68. if( psDec->exc_Q14[ i ] > 0 ) {
  69. psDec->exc_Q14[ i ] -= QUANT_LEVEL_ADJUST_Q10 << 4;
  70. } else
  71. if( psDec->exc_Q14[ i ] < 0 ) {
  72. psDec->exc_Q14[ i ] += QUANT_LEVEL_ADJUST_Q10 << 4;
  73. }
  74. psDec->exc_Q14[ i ] += offset_Q10 << 4;
  75. if( rand_seed < 0 ) {
  76. psDec->exc_Q14[ i ] = -psDec->exc_Q14[ i ];
  77. }
  78. rand_seed = silk_ADD32_ovflw( rand_seed, pulses[ i ] );
  79. }
  80. /* Copy LPC state */
  81. silk_memcpy( sLPC_Q14, psDec->sLPC_Q14_buf, MAX_LPC_ORDER * sizeof( opus_int32 ) );
  82. pexc_Q14 = psDec->exc_Q14;
  83. pxq = xq;
  84. sLTP_buf_idx = psDec->ltp_mem_length;
  85. /* Loop over subframes */
  86. for( k = 0; k < psDec->nb_subfr; k++ ) {
  87. pres_Q14 = res_Q14;
  88. A_Q12 = psDecCtrl->PredCoef_Q12[ k >> 1 ];
  89. /* Preload LPC coeficients to array on stack. Gives small performance gain */
  90. silk_memcpy( A_Q12_tmp, A_Q12, psDec->LPC_order * sizeof( opus_int16 ) );
  91. B_Q14 = &psDecCtrl->LTPCoef_Q14[ k * LTP_ORDER ];
  92. signalType = psDec->indices.signalType;
  93. Gain_Q10 = silk_RSHIFT( psDecCtrl->Gains_Q16[ k ], 6 );
  94. inv_gain_Q31 = silk_INVERSE32_varQ( psDecCtrl->Gains_Q16[ k ], 47 );
  95. /* Calculate gain adjustment factor */
  96. if( psDecCtrl->Gains_Q16[ k ] != psDec->prev_gain_Q16 ) {
  97. gain_adj_Q16 = silk_DIV32_varQ( psDec->prev_gain_Q16, psDecCtrl->Gains_Q16[ k ], 16 );
  98. /* Scale short term state */
  99. for( i = 0; i < MAX_LPC_ORDER; i++ ) {
  100. sLPC_Q14[ i ] = silk_SMULWW( gain_adj_Q16, sLPC_Q14[ i ] );
  101. }
  102. } else {
  103. gain_adj_Q16 = (opus_int32)1 << 16;
  104. }
  105. /* Save inv_gain */
  106. silk_assert( inv_gain_Q31 != 0 );
  107. psDec->prev_gain_Q16 = psDecCtrl->Gains_Q16[ k ];
  108. /* Avoid abrupt transition from voiced PLC to unvoiced normal decoding */
  109. if( psDec->lossCnt && psDec->prevSignalType == TYPE_VOICED &&
  110. psDec->indices.signalType != TYPE_VOICED && k < MAX_NB_SUBFR/2 ) {
  111. silk_memset( B_Q14, 0, LTP_ORDER * sizeof( opus_int16 ) );
  112. B_Q14[ LTP_ORDER/2 ] = SILK_FIX_CONST( 0.25, 14 );
  113. signalType = TYPE_VOICED;
  114. psDecCtrl->pitchL[ k ] = psDec->lagPrev;
  115. }
  116. if( signalType == TYPE_VOICED ) {
  117. /* Voiced */
  118. lag = psDecCtrl->pitchL[ k ];
  119. /* Re-whitening */
  120. if( k == 0 || ( k == 2 && NLSF_interpolation_flag ) ) {
  121. /* Rewhiten with new A coefs */
  122. start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2;
  123. silk_assert( start_idx > 0 );
  124. if( k == 2 ) {
  125. silk_memcpy( &psDec->outBuf[ psDec->ltp_mem_length ], xq, 2 * psDec->subfr_length * sizeof( opus_int16 ) );
  126. }
  127. silk_LPC_analysis_filter( &sLTP[ start_idx ], &psDec->outBuf[ start_idx + k * psDec->subfr_length ],
  128. A_Q12, psDec->ltp_mem_length - start_idx, psDec->LPC_order, arch );
  129. /* After rewhitening the LTP state is unscaled */
  130. if( k == 0 ) {
  131. /* Do LTP downscaling to reduce inter-packet dependency */
  132. inv_gain_Q31 = silk_LSHIFT( silk_SMULWB( inv_gain_Q31, psDecCtrl->LTP_scale_Q14 ), 2 );
  133. }
  134. for( i = 0; i < lag + LTP_ORDER/2; i++ ) {
  135. sLTP_Q15[ sLTP_buf_idx - i - 1 ] = silk_SMULWB( inv_gain_Q31, sLTP[ psDec->ltp_mem_length - i - 1 ] );
  136. }
  137. } else {
  138. /* Update LTP state when Gain changes */
  139. if( gain_adj_Q16 != (opus_int32)1 << 16 ) {
  140. for( i = 0; i < lag + LTP_ORDER/2; i++ ) {
  141. sLTP_Q15[ sLTP_buf_idx - i - 1 ] = silk_SMULWW( gain_adj_Q16, sLTP_Q15[ sLTP_buf_idx - i - 1 ] );
  142. }
  143. }
  144. }
  145. }
  146. /* Long-term prediction */
  147. if( signalType == TYPE_VOICED ) {
  148. /* Set up pointer */
  149. pred_lag_ptr = &sLTP_Q15[ sLTP_buf_idx - lag + LTP_ORDER / 2 ];
  150. for( i = 0; i < psDec->subfr_length; i++ ) {
  151. /* Unrolled loop */
  152. /* Avoids introducing a bias because silk_SMLAWB() always rounds to -inf */
  153. LTP_pred_Q13 = 2;
  154. LTP_pred_Q13 = silk_SMLAWB( LTP_pred_Q13, pred_lag_ptr[ 0 ], B_Q14[ 0 ] );
  155. LTP_pred_Q13 = silk_SMLAWB( LTP_pred_Q13, pred_lag_ptr[ -1 ], B_Q14[ 1 ] );
  156. LTP_pred_Q13 = silk_SMLAWB( LTP_pred_Q13, pred_lag_ptr[ -2 ], B_Q14[ 2 ] );
  157. LTP_pred_Q13 = silk_SMLAWB( LTP_pred_Q13, pred_lag_ptr[ -3 ], B_Q14[ 3 ] );
  158. LTP_pred_Q13 = silk_SMLAWB( LTP_pred_Q13, pred_lag_ptr[ -4 ], B_Q14[ 4 ] );
  159. pred_lag_ptr++;
  160. /* Generate LPC excitation */
  161. pres_Q14[ i ] = silk_ADD_LSHIFT32( pexc_Q14[ i ], LTP_pred_Q13, 1 );
  162. /* Update states */
  163. sLTP_Q15[ sLTP_buf_idx ] = silk_LSHIFT( pres_Q14[ i ], 1 );
  164. sLTP_buf_idx++;
  165. }
  166. } else {
  167. pres_Q14 = pexc_Q14;
  168. }
  169. for( i = 0; i < psDec->subfr_length; i++ ) {
  170. /* Short-term prediction */
  171. silk_assert( psDec->LPC_order == 10 || psDec->LPC_order == 16 );
  172. /* Avoids introducing a bias because silk_SMLAWB() always rounds to -inf */
  173. LPC_pred_Q10 = silk_RSHIFT( psDec->LPC_order, 1 );
  174. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 1 ], A_Q12_tmp[ 0 ] );
  175. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 2 ], A_Q12_tmp[ 1 ] );
  176. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 3 ], A_Q12_tmp[ 2 ] );
  177. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 4 ], A_Q12_tmp[ 3 ] );
  178. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 5 ], A_Q12_tmp[ 4 ] );
  179. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 6 ], A_Q12_tmp[ 5 ] );
  180. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 7 ], A_Q12_tmp[ 6 ] );
  181. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 8 ], A_Q12_tmp[ 7 ] );
  182. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 9 ], A_Q12_tmp[ 8 ] );
  183. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 10 ], A_Q12_tmp[ 9 ] );
  184. if( psDec->LPC_order == 16 ) {
  185. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 11 ], A_Q12_tmp[ 10 ] );
  186. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 12 ], A_Q12_tmp[ 11 ] );
  187. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 13 ], A_Q12_tmp[ 12 ] );
  188. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 14 ], A_Q12_tmp[ 13 ] );
  189. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 15 ], A_Q12_tmp[ 14 ] );
  190. LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14[ MAX_LPC_ORDER + i - 16 ], A_Q12_tmp[ 15 ] );
  191. }
  192. /* Add prediction to LPC excitation */
  193. sLPC_Q14[ MAX_LPC_ORDER + i ] = silk_ADD_SAT32( pres_Q14[ i ], silk_LSHIFT_SAT32( LPC_pred_Q10, 4 ) );
  194. /* Scale with gain */
  195. pxq[ i ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( silk_SMULWW( sLPC_Q14[ MAX_LPC_ORDER + i ], Gain_Q10 ), 8 ) );
  196. }
  197. /* DEBUG_STORE_DATA( dec.pcm, pxq, psDec->subfr_length * sizeof( opus_int16 ) ) */
  198. /* Update LPC filter state */
  199. silk_memcpy( sLPC_Q14, &sLPC_Q14[ psDec->subfr_length ], MAX_LPC_ORDER * sizeof( opus_int32 ) );
  200. pexc_Q14 += psDec->subfr_length;
  201. pxq += psDec->subfr_length;
  202. }
  203. /* Save LPC state */
  204. silk_memcpy( psDec->sLPC_Q14_buf, sLPC_Q14, MAX_LPC_ORDER * sizeof( opus_int32 ) );
  205. RESTORE_STACK;
  206. }