Renamed SKP_[u]int* to opus_[u]int*
This commit is contained in:
parent
d77d6a58fc
commit
f9d14f8d77
164 changed files with 3297 additions and 3298 deletions
|
@ -30,17 +30,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
/* Limit, stabilize, convert and quantize NLSFs */
|
||||
void silk_process_NLSFs(
|
||||
silk_encoder_state *psEncC, /* I/O Encoder state */
|
||||
SKP_int16 PredCoef_Q12[ 2 ][ MAX_LPC_ORDER ], /* O Prediction coefficients */
|
||||
SKP_int16 pNLSF_Q15[ MAX_LPC_ORDER ], /* I/O Normalized LSFs (quant out) (0 - (2^15-1)) */
|
||||
const SKP_int16 prev_NLSFq_Q15[ MAX_LPC_ORDER ] /* I Previous Normalized LSFs (0 - (2^15-1)) */
|
||||
opus_int16 PredCoef_Q12[ 2 ][ MAX_LPC_ORDER ], /* O Prediction coefficients */
|
||||
opus_int16 pNLSF_Q15[ MAX_LPC_ORDER ], /* I/O Normalized LSFs (quant out) (0 - (2^15-1)) */
|
||||
const opus_int16 prev_NLSFq_Q15[ MAX_LPC_ORDER ] /* I Previous Normalized LSFs (0 - (2^15-1)) */
|
||||
)
|
||||
{
|
||||
SKP_int i, doInterpolate;
|
||||
SKP_int NLSF_mu_Q20;
|
||||
SKP_int32 i_sqr_Q15;
|
||||
SKP_int16 pNLSF0_temp_Q15[ MAX_LPC_ORDER ];
|
||||
SKP_int16 pNLSFW_QW[ MAX_LPC_ORDER ];
|
||||
SKP_int16 pNLSFW0_temp_QW[ MAX_LPC_ORDER ];
|
||||
opus_int i, doInterpolate;
|
||||
opus_int NLSF_mu_Q20;
|
||||
opus_int32 i_sqr_Q15;
|
||||
opus_int16 pNLSF0_temp_Q15[ MAX_LPC_ORDER ];
|
||||
opus_int16 pNLSFW_QW[ MAX_LPC_ORDER ];
|
||||
opus_int16 pNLSFW0_temp_QW[ MAX_LPC_ORDER ];
|
||||
|
||||
SKP_assert( psEncC->speech_activity_Q8 >= 0 );
|
||||
SKP_assert( psEncC->speech_activity_Q8 <= SILK_FIX_CONST( 1.0, 8 ) );
|
||||
|
@ -98,6 +98,6 @@ void silk_process_NLSFs(
|
|||
|
||||
} else {
|
||||
/* Copy LPC coefficients for first half from second half */
|
||||
SKP_memcpy( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ], psEncC->predictLPCOrder * sizeof( SKP_int16 ) );
|
||||
SKP_memcpy( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ], psEncC->predictLPCOrder * sizeof( opus_int16 ) );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue