annotate src/opus-1.3/silk/gain_quant.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
cannam@154 34 #define OFFSET ( ( MIN_QGAIN_DB * 128 ) / 6 + 16 * 128 )
cannam@154 35 #define SCALE_Q16 ( ( 65536 * ( N_LEVELS_QGAIN - 1 ) ) / ( ( ( MAX_QGAIN_DB - MIN_QGAIN_DB ) * 128 ) / 6 ) )
cannam@154 36 #define INV_SCALE_Q16 ( ( 65536 * ( ( ( MAX_QGAIN_DB - MIN_QGAIN_DB ) * 128 ) / 6 ) ) / ( N_LEVELS_QGAIN - 1 ) )
cannam@154 37
cannam@154 38 /* Gain scalar quantization with hysteresis, uniform on log scale */
cannam@154 39 void silk_gains_quant(
cannam@154 40 opus_int8 ind[ MAX_NB_SUBFR ], /* O gain indices */
cannam@154 41 opus_int32 gain_Q16[ MAX_NB_SUBFR ], /* I/O gains (quantized out) */
cannam@154 42 opus_int8 *prev_ind, /* I/O last index in previous frame */
cannam@154 43 const opus_int conditional, /* I first gain is delta coded if 1 */
cannam@154 44 const opus_int nb_subfr /* I number of subframes */
cannam@154 45 )
cannam@154 46 {
cannam@154 47 opus_int k, double_step_size_threshold;
cannam@154 48
cannam@154 49 for( k = 0; k < nb_subfr; k++ ) {
cannam@154 50 /* Convert to log scale, scale, floor() */
cannam@154 51 ind[ k ] = silk_SMULWB( SCALE_Q16, silk_lin2log( gain_Q16[ k ] ) - OFFSET );
cannam@154 52
cannam@154 53 /* Round towards previous quantized gain (hysteresis) */
cannam@154 54 if( ind[ k ] < *prev_ind ) {
cannam@154 55 ind[ k ]++;
cannam@154 56 }
cannam@154 57 ind[ k ] = silk_LIMIT_int( ind[ k ], 0, N_LEVELS_QGAIN - 1 );
cannam@154 58
cannam@154 59 /* Compute delta indices and limit */
cannam@154 60 if( k == 0 && conditional == 0 ) {
cannam@154 61 /* Full index */
cannam@154 62 ind[ k ] = silk_LIMIT_int( ind[ k ], *prev_ind + MIN_DELTA_GAIN_QUANT, N_LEVELS_QGAIN - 1 );
cannam@154 63 *prev_ind = ind[ k ];
cannam@154 64 } else {
cannam@154 65 /* Delta index */
cannam@154 66 ind[ k ] = ind[ k ] - *prev_ind;
cannam@154 67
cannam@154 68 /* Double the quantization step size for large gain increases, so that the max gain level can be reached */
cannam@154 69 double_step_size_threshold = 2 * MAX_DELTA_GAIN_QUANT - N_LEVELS_QGAIN + *prev_ind;
cannam@154 70 if( ind[ k ] > double_step_size_threshold ) {
cannam@154 71 ind[ k ] = double_step_size_threshold + silk_RSHIFT( ind[ k ] - double_step_size_threshold + 1, 1 );
cannam@154 72 }
cannam@154 73
cannam@154 74 ind[ k ] = silk_LIMIT_int( ind[ k ], MIN_DELTA_GAIN_QUANT, MAX_DELTA_GAIN_QUANT );
cannam@154 75
cannam@154 76 /* Accumulate deltas */
cannam@154 77 if( ind[ k ] > double_step_size_threshold ) {
cannam@154 78 *prev_ind += silk_LSHIFT( ind[ k ], 1 ) - double_step_size_threshold;
cannam@154 79 *prev_ind = silk_min_int( *prev_ind, N_LEVELS_QGAIN - 1 );
cannam@154 80 } else {
cannam@154 81 *prev_ind += ind[ k ];
cannam@154 82 }
cannam@154 83
cannam@154 84 /* Shift to make non-negative */
cannam@154 85 ind[ k ] -= MIN_DELTA_GAIN_QUANT;
cannam@154 86 }
cannam@154 87
cannam@154 88 /* Scale and convert to linear scale */
cannam@154 89 gain_Q16[ k ] = silk_log2lin( silk_min_32( silk_SMULWB( INV_SCALE_Q16, *prev_ind ) + OFFSET, 3967 ) ); /* 3967 = 31 in Q7 */
cannam@154 90 }
cannam@154 91 }
cannam@154 92
cannam@154 93 /* Gains scalar dequantization, uniform on log scale */
cannam@154 94 void silk_gains_dequant(
cannam@154 95 opus_int32 gain_Q16[ MAX_NB_SUBFR ], /* O quantized gains */
cannam@154 96 const opus_int8 ind[ MAX_NB_SUBFR ], /* I gain indices */
cannam@154 97 opus_int8 *prev_ind, /* I/O last index in previous frame */
cannam@154 98 const opus_int conditional, /* I first gain is delta coded if 1 */
cannam@154 99 const opus_int nb_subfr /* I number of subframes */
cannam@154 100 )
cannam@154 101 {
cannam@154 102 opus_int k, ind_tmp, double_step_size_threshold;
cannam@154 103
cannam@154 104 for( k = 0; k < nb_subfr; k++ ) {
cannam@154 105 if( k == 0 && conditional == 0 ) {
cannam@154 106 /* Gain index is not allowed to go down more than 16 steps (~21.8 dB) */
cannam@154 107 *prev_ind = silk_max_int( ind[ k ], *prev_ind - 16 );
cannam@154 108 } else {
cannam@154 109 /* Delta index */
cannam@154 110 ind_tmp = ind[ k ] + MIN_DELTA_GAIN_QUANT;
cannam@154 111
cannam@154 112 /* Accumulate deltas */
cannam@154 113 double_step_size_threshold = 2 * MAX_DELTA_GAIN_QUANT - N_LEVELS_QGAIN + *prev_ind;
cannam@154 114 if( ind_tmp > double_step_size_threshold ) {
cannam@154 115 *prev_ind += silk_LSHIFT( ind_tmp, 1 ) - double_step_size_threshold;
cannam@154 116 } else {
cannam@154 117 *prev_ind += ind_tmp;
cannam@154 118 }
cannam@154 119 }
cannam@154 120 *prev_ind = silk_LIMIT_int( *prev_ind, 0, N_LEVELS_QGAIN - 1 );
cannam@154 121
cannam@154 122 /* Scale and convert to linear scale */
cannam@154 123 gain_Q16[ k ] = silk_log2lin( silk_min_32( silk_SMULWB( INV_SCALE_Q16, *prev_ind ) + OFFSET, 3967 ) ); /* 3967 = 31 in Q7 */
cannam@154 124 }
cannam@154 125 }
cannam@154 126
cannam@154 127 /* Compute unique identifier of gain indices vector */
cannam@154 128 opus_int32 silk_gains_ID( /* O returns unique identifier of gains */
cannam@154 129 const opus_int8 ind[ MAX_NB_SUBFR ], /* I gain indices */
cannam@154 130 const opus_int nb_subfr /* I number of subframes */
cannam@154 131 )
cannam@154 132 {
cannam@154 133 opus_int k;
cannam@154 134 opus_int32 gainsID;
cannam@154 135
cannam@154 136 gainsID = 0;
cannam@154 137 for( k = 0; k < nb_subfr; k++ ) {
cannam@154 138 gainsID = silk_ADD_LSHIFT32( ind[ k ], gainsID, 8 );
cannam@154 139 }
cannam@154 140
cannam@154 141 return gainsID;
cannam@154 142 }