annotate src/opus-1.3/silk/quant_LTP_gains.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 4664ac0c1032
children
rev   line source
cannam@154 1 /***********************************************************************
cannam@154 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
cannam@154 3 Redistribution and use in source and binary forms, with or without
cannam@154 4 modification, are permitted provided that the following conditions
cannam@154 5 are met:
cannam@154 6 - Redistributions of source code must retain the above copyright notice,
cannam@154 7 this list of conditions and the following disclaimer.
cannam@154 8 - Redistributions in binary form must reproduce the above copyright
cannam@154 9 notice, this list of conditions and the following disclaimer in the
cannam@154 10 documentation and/or other materials provided with the distribution.
cannam@154 11 - Neither the name of Internet Society, IETF or IETF Trust, nor the
cannam@154 12 names of specific contributors, may be used to endorse or promote
cannam@154 13 products derived from this software without specific prior written
cannam@154 14 permission.
cannam@154 15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
cannam@154 16 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
cannam@154 17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
cannam@154 18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
cannam@154 19 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
cannam@154 20 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
cannam@154 21 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
cannam@154 22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
cannam@154 23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
cannam@154 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
cannam@154 25 POSSIBILITY OF SUCH DAMAGE.
cannam@154 26 ***********************************************************************/
cannam@154 27
cannam@154 28 #ifdef HAVE_CONFIG_H
cannam@154 29 #include "config.h"
cannam@154 30 #endif
cannam@154 31
cannam@154 32 #include "main.h"
cannam@154 33 #include "tuning_parameters.h"
cannam@154 34
cannam@154 35 void silk_quant_LTP_gains(
cannam@154 36 opus_int16 B_Q14[ MAX_NB_SUBFR * LTP_ORDER ], /* O Quantized LTP gains */
cannam@154 37 opus_int8 cbk_index[ MAX_NB_SUBFR ], /* O Codebook Index */
cannam@154 38 opus_int8 *periodicity_index, /* O Periodicity Index */
cannam@154 39 opus_int32 *sum_log_gain_Q7, /* I/O Cumulative max prediction gain */
cannam@154 40 opus_int *pred_gain_dB_Q7, /* O LTP prediction gain */
cannam@154 41 const opus_int32 XX_Q17[ MAX_NB_SUBFR*LTP_ORDER*LTP_ORDER ], /* I Correlation matrix in Q18 */
cannam@154 42 const opus_int32 xX_Q17[ MAX_NB_SUBFR*LTP_ORDER ], /* I Correlation vector in Q18 */
cannam@154 43 const opus_int subfr_len, /* I Number of samples per subframe */
cannam@154 44 const opus_int nb_subfr, /* I Number of subframes */
cannam@154 45 int arch /* I Run-time architecture */
cannam@154 46 )
cannam@154 47 {
cannam@154 48 opus_int j, k, cbk_size;
cannam@154 49 opus_int8 temp_idx[ MAX_NB_SUBFR ];
cannam@154 50 const opus_uint8 *cl_ptr_Q5;
cannam@154 51 const opus_int8 *cbk_ptr_Q7;
cannam@154 52 const opus_uint8 *cbk_gain_ptr_Q7;
cannam@154 53 const opus_int32 *XX_Q17_ptr, *xX_Q17_ptr;
cannam@154 54 opus_int32 res_nrg_Q15_subfr, res_nrg_Q15, rate_dist_Q7_subfr, rate_dist_Q7, min_rate_dist_Q7;
cannam@154 55 opus_int32 sum_log_gain_tmp_Q7, best_sum_log_gain_Q7, max_gain_Q7;
cannam@154 56 opus_int gain_Q7;
cannam@154 57
cannam@154 58 /***************************************************/
cannam@154 59 /* iterate over different codebooks with different */
cannam@154 60 /* rates/distortions, and choose best */
cannam@154 61 /***************************************************/
cannam@154 62 min_rate_dist_Q7 = silk_int32_MAX;
cannam@154 63 best_sum_log_gain_Q7 = 0;
cannam@154 64 for( k = 0; k < 3; k++ ) {
cannam@154 65 /* Safety margin for pitch gain control, to take into account factors
cannam@154 66 such as state rescaling/rewhitening. */
cannam@154 67 opus_int32 gain_safety = SILK_FIX_CONST( 0.4, 7 );
cannam@154 68
cannam@154 69 cl_ptr_Q5 = silk_LTP_gain_BITS_Q5_ptrs[ k ];
cannam@154 70 cbk_ptr_Q7 = silk_LTP_vq_ptrs_Q7[ k ];
cannam@154 71 cbk_gain_ptr_Q7 = silk_LTP_vq_gain_ptrs_Q7[ k ];
cannam@154 72 cbk_size = silk_LTP_vq_sizes[ k ];
cannam@154 73
cannam@154 74 /* Set up pointers to first subframe */
cannam@154 75 XX_Q17_ptr = XX_Q17;
cannam@154 76 xX_Q17_ptr = xX_Q17;
cannam@154 77
cannam@154 78 res_nrg_Q15 = 0;
cannam@154 79 rate_dist_Q7 = 0;
cannam@154 80 sum_log_gain_tmp_Q7 = *sum_log_gain_Q7;
cannam@154 81 for( j = 0; j < nb_subfr; j++ ) {
cannam@154 82 max_gain_Q7 = silk_log2lin( ( SILK_FIX_CONST( MAX_SUM_LOG_GAIN_DB / 6.0, 7 ) - sum_log_gain_tmp_Q7 )
cannam@154 83 + SILK_FIX_CONST( 7, 7 ) ) - gain_safety;
cannam@154 84 silk_VQ_WMat_EC(
cannam@154 85 &temp_idx[ j ], /* O index of best codebook vector */
cannam@154 86 &res_nrg_Q15_subfr, /* O residual energy */
cannam@154 87 &rate_dist_Q7_subfr, /* O best weighted quantization error + mu * rate */
cannam@154 88 &gain_Q7, /* O sum of absolute LTP coefficients */
cannam@154 89 XX_Q17_ptr, /* I correlation matrix */
cannam@154 90 xX_Q17_ptr, /* I correlation vector */
cannam@154 91 cbk_ptr_Q7, /* I codebook */
cannam@154 92 cbk_gain_ptr_Q7, /* I codebook effective gains */
cannam@154 93 cl_ptr_Q5, /* I code length for each codebook vector */
cannam@154 94 subfr_len, /* I number of samples per subframe */
cannam@154 95 max_gain_Q7, /* I maximum sum of absolute LTP coefficients */
cannam@154 96 cbk_size, /* I number of vectors in codebook */
cannam@154 97 arch /* I Run-time architecture */
cannam@154 98 );
cannam@154 99
cannam@154 100 res_nrg_Q15 = silk_ADD_POS_SAT32( res_nrg_Q15, res_nrg_Q15_subfr );
cannam@154 101 rate_dist_Q7 = silk_ADD_POS_SAT32( rate_dist_Q7, rate_dist_Q7_subfr );
cannam@154 102 sum_log_gain_tmp_Q7 = silk_max(0, sum_log_gain_tmp_Q7
cannam@154 103 + silk_lin2log( gain_safety + gain_Q7 ) - SILK_FIX_CONST( 7, 7 ));
cannam@154 104
cannam@154 105 XX_Q17_ptr += LTP_ORDER * LTP_ORDER;
cannam@154 106 xX_Q17_ptr += LTP_ORDER;
cannam@154 107 }
cannam@154 108
cannam@154 109 if( rate_dist_Q7 <= min_rate_dist_Q7 ) {
cannam@154 110 min_rate_dist_Q7 = rate_dist_Q7;
cannam@154 111 *periodicity_index = (opus_int8)k;
cannam@154 112 silk_memcpy( cbk_index, temp_idx, nb_subfr * sizeof( opus_int8 ) );
cannam@154 113 best_sum_log_gain_Q7 = sum_log_gain_tmp_Q7;
cannam@154 114 }
cannam@154 115 }
cannam@154 116
cannam@154 117 cbk_ptr_Q7 = silk_LTP_vq_ptrs_Q7[ *periodicity_index ];
cannam@154 118 for( j = 0; j < nb_subfr; j++ ) {
cannam@154 119 for( k = 0; k < LTP_ORDER; k++ ) {
cannam@154 120 B_Q14[ j * LTP_ORDER + k ] = silk_LSHIFT( cbk_ptr_Q7[ cbk_index[ j ] * LTP_ORDER + k ], 7 );
cannam@154 121 }
cannam@154 122 }
cannam@154 123
cannam@154 124 if( nb_subfr == 2 ) {
cannam@154 125 res_nrg_Q15 = silk_RSHIFT32( res_nrg_Q15, 1 );
cannam@154 126 } else {
cannam@154 127 res_nrg_Q15 = silk_RSHIFT32( res_nrg_Q15, 2 );
cannam@154 128 }
cannam@154 129
cannam@154 130 *sum_log_gain_Q7 = best_sum_log_gain_Q7;
cannam@154 131 *pred_gain_dB_Q7 = (opus_int)silk_SMULBB( -3, silk_lin2log( res_nrg_Q15 ) - ( 15 << 7 ) );
cannam@154 132 }