Removed all the silk_ prefixes in source file names (not symbols)

This commit is contained in:
Jean-Marc Valin 2011-09-16 01:16:53 -07:00
parent fb3a437c9d
commit 1c2f5633d1
176 changed files with 761 additions and 761 deletions

View file

@ -35,8 +35,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_tables.h" #include "tables.h"
/* Number of binary divisions, when not in low complexity mode */ /* Number of binary divisions, when not in low complexity mode */
#define BIN_DIV_STEPS_A2NLSF_FIX 3 /* must be no higher than 16 - log2( LSF_COS_TAB_SZ_FIX ) */ #define BIN_DIV_STEPS_A2NLSF_FIX 3 /* must be no higher than 16 - log2( LSF_COS_TAB_SZ_FIX ) */

View file

@ -28,9 +28,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_API_H #ifndef SILK_API_H
#define SILK_API_H #define SILK_API_H
#include "silk_control.h" #include "control.h"
#include "silk_typedef.h" #include "typedef.h"
#include "silk_errors.h" #include "errors.h"
#include "entenc.h" #include "entenc.h"
#include "entdec.h" #include "entdec.h"

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Generates excitation for CNG LPC synthesis */ /* Generates excitation for CNG LPC synthesis */
static inline void silk_CNG_exc( static inline void silk_CNG_exc(

View file

@ -29,11 +29,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#ifdef FIXED_POINT #ifdef FIXED_POINT
#include "silk_main_FIX.h" #include "main_FIX.h"
#else #else
#include "silk_main_FLP.h" #include "main_FLP.h"
#endif #endif
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* High-pass filter with cutoff frequency adaptation based on pitch lag statistics */ /* High-pass filter with cutoff frequency adaptation based on pitch lag statistics */
void silk_HP_variable_cutoff( void silk_HP_variable_cutoff(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/*******************************************/ /*******************************************/
/* LPC analysis filter */ /* LPC analysis filter */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#define QA 16 #define QA 16
#define A_LIMIT SILK_FIX_CONST( 0.99975, QA ) #define A_LIMIT SILK_FIX_CONST( 0.99975, QA )

View file

@ -36,7 +36,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
[0.95 : 0.15 : 0.35] normalized cut off frequencies. [0.95 : 0.15 : 0.35] normalized cut off frequencies.
*/ */
#include "silk_main.h" #include "main.h"
/* Helper function, interpolates the filter taps */ /* Helper function, interpolates the filter taps */
static inline void silk_LP_interpolate_filter_taps( static inline void silk_LP_interpolate_filter_taps(

View file

@ -35,8 +35,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/* therefore the result is not accurate LSFs, but the two */ /* therefore the result is not accurate LSFs, but the two */
/* functions are accurate inverses of each other */ /* functions are accurate inverses of each other */
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_tables.h" #include "tables.h"
#define QA 16 #define QA 16

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Compute quantization errors for an LPC_order element input vector for a VQ codebook */ /* Compute quantization errors for an LPC_order element input vector for a VQ codebook */
void silk_NLSF_VQ( void silk_NLSF_VQ(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_define.h" #include "define.h"
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* /*
R. Laroia, N. Phamdo and N. Farvardin, "Robust and Efficient Quantization of Speech LSP R. Laroia, N. Phamdo and N. Farvardin, "Robust and Efficient Quantization of Speech LSP

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Predictive dequantizer for NLSF residuals */ /* Predictive dequantizer for NLSF residuals */
void silk_NLSF_residual_dequant( /* O Returns RD value in Q30 */ void silk_NLSF_residual_dequant( /* O Returns RD value in Q30 */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Delayed-decision quantizer for NLSF residuals */ /* Delayed-decision quantizer for NLSF residuals */
opus_int32 silk_NLSF_del_dec_quant( /* O Returns RD value in Q25 */ opus_int32 silk_NLSF_del_dec_quant( /* O Returns RD value in Q25 */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
#define STORE_LSF_DATA_FOR_TRAINING 0 #define STORE_LSF_DATA_FOR_TRAINING 0

View file

@ -38,7 +38,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/* - Output are sorted NLSF coefficients */ /* - Output are sorted NLSF coefficients */
/* */ /* */
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Constant Definitions */ /* Constant Definitions */
#define MAX_LOOPS 20 #define MAX_LOOPS 20

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Unpack predictor values and indices for entropy coding tables */ /* Unpack predictor values and indices for entropy coding tables */
void silk_NLSF_unpack( void silk_NLSF_unpack(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
static inline void silk_nsq_scale_states( static inline void silk_nsq_scale_states(
const silk_encoder_state *psEncC, /* I Encoder State */ const silk_encoder_state *psEncC, /* I Encoder State */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
typedef struct { typedef struct {
opus_int32 sLPC_Q14[ MAX_FRAME_LENGTH / MAX_NB_SUBFR + NSQ_LPC_BUF_LENGTH ]; opus_int32 sLPC_Q14[ MAX_FRAME_LENGTH / MAX_NB_SUBFR + NSQ_LPC_BUF_LENGTH ];

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
#include "silk_PLC.h" #include "PLC.h"
#define NB_ATT 2 #define NB_ATT 2
static const opus_int16 HARM_ATT_Q15[NB_ATT] = { 32440, 31130 }; /* 0.99, 0.95 */ static const opus_int16 HARM_ATT_Q15[NB_ATT] = { 32440, 31130 }; /* 0.99, 0.95 */

View file

@ -28,7 +28,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_PLC_FIX_H #ifndef SILK_PLC_FIX_H
#define SILK_PLC_FIX_H #define SILK_PLC_FIX_H
#include "silk_main.h" #include "main.h"
#define BWE_COEF 0.99 #define BWE_COEF 0.99
#define V_PITCH_GAIN_START_MIN_Q14 11469 /* 0.7 in Q14 */ #define V_PITCH_GAIN_START_MIN_Q14 11469 /* 0.7 in Q14 */

View file

@ -39,9 +39,9 @@ extern "C"
#include <stdlib.h> /* for abs() */ #include <stdlib.h> /* for abs() */
#include <string.h> /* for memset(), memcpy(), memmove() */ #include <string.h> /* for memset(), memcpy(), memmove() */
#include "silk_typedef.h" #include "typedef.h"
#include "silk_resampler_structs.h" #include "resampler_structs.h"
#include "silk_macros.h" #include "macros.h"
/********************************************************************/ /********************************************************************/
@ -609,9 +609,9 @@ static inline opus_int64 silk_max_64(opus_int64 a, opus_int64 b)
/* the following seems faster on x86 */ /* the following seems faster on x86 */
#define silk_SMMUL(a32, b32) (opus_int32)silk_RSHIFT64(silk_SMULL((a32), (b32)), 32) #define silk_SMMUL(a32, b32) (opus_int32)silk_RSHIFT64(silk_SMULL((a32), (b32)), 32)
#include "silk_Inlines.h" #include "Inlines.h"
#include "silk_MacroCount.h" #include "MacroCount.h"
#include "silk_MacroDebug.h" #include "MacroDebug.h"
#ifdef __cplusplus #ifdef __cplusplus
} }

View file

@ -30,7 +30,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include "silk_main.h" #include "main.h"
/**********************************/ /**********************************/
/* Initialization of the Silk VAD */ /* Initialization of the Silk VAD */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Entropy constrained matrix-weighted VQ, hard-coded to 5-element vectors, for a single input data vector */ /* Entropy constrained matrix-weighted VQ, hard-coded to 5-element vectors, for a single input data vector */
void silk_VQ_WMat_EC( void silk_VQ_WMat_EC(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Coefficients for 2-band filter bank based on first-order allpass filters */ /* Coefficients for 2-band filter bank based on first-order allpass filters */
/* old*/ /* old*/

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Apply sine window to signal vector. */ /* Apply sine window to signal vector. */
/* Window types: */ /* Window types: */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Function that returns the maximum absolut value of the input vector */ /* Function that returns the maximum absolut value of the input vector */
opus_int16 silk_int16_array_maxabs( /* O Maximum absolute value, max: 2^15-1 */ opus_int16 silk_int16_array_maxabs( /* O Maximum absolute value, max: 2^15-1 */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Compute autocorrelation */ /* Compute autocorrelation */
void silk_autocorr( void silk_autocorr(

View file

@ -36,7 +36,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Second order ARMA filter, alternative implementation */ /* Second order ARMA filter, alternative implementation */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#define MAX_FRAME_SIZE 384 /* subfr_length * nb_subfr = ( 0.005 * 16000 + 16 ) * 4 = 384*/ #define MAX_FRAME_SIZE 384 /* subfr_length * nb_subfr = ( 0.005 * 16000 + 16 ) * 4 = 384*/
#define MAX_NB_SUBFR 4 #define MAX_NB_SUBFR 4

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Chirp (bandwidth expand) LP AR filter */ /* Chirp (bandwidth expand) LP AR filter */
void silk_bwexpander( void silk_bwexpander(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
/* Chirp (bandwidth expand) LP AR filter */ /* Chirp (bandwidth expand) LP AR filter */
void silk_bwexpander_32( void silk_bwexpander_32(

View file

@ -29,9 +29,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
#include "silk_control.h" #include "control.h"
#include "silk_errors.h" #include "errors.h"
/* Check encoder control struct */ /* Check encoder control struct */
opus_int check_control_input( opus_int check_control_input(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/*#define silk_enc_map(a) ((a) > 0 ? 1 : 0)*/ /*#define silk_enc_map(a) ((a) > 0 ? 1 : 0)*/
/*#define silk_dec_map(a) ((a) > 0 ? 1 : -1)*/ /*#define silk_dec_map(a) ((a) > 0 ? 1 : -1)*/

View file

@ -28,7 +28,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_CONTROL_H #ifndef SILK_CONTROL_H
#define SILK_CONTROL_H #define SILK_CONTROL_H
#include "silk_typedef.h" #include "typedef.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" extern "C"

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Control SNR of redidual quantizer */ /* Control SNR of redidual quantizer */
opus_int silk_control_SNR( opus_int silk_control_SNR(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Control internal sampling rate */ /* Control internal sampling rate */
opus_int silk_control_audio_bandwidth( opus_int silk_control_audio_bandwidth(

View file

@ -29,13 +29,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#ifdef FIXED_POINT #ifdef FIXED_POINT
#include "silk_main_FIX.h" #include "main_FIX.h"
#define silk_encoder_state_Fxx silk_encoder_state_FIX #define silk_encoder_state_Fxx silk_encoder_state_FIX
#else #else
#include "silk_main_FLP.h" #include "main_FLP.h"
#define silk_encoder_state_Fxx silk_encoder_state_FLP #define silk_encoder_state_Fxx silk_encoder_state_FLP
#endif #endif
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
opus_int silk_setup_resamplers( opus_int silk_setup_resamplers(
silk_encoder_state_Fxx *psEnc, /* I/O */ silk_encoder_state_Fxx *psEnc, /* I/O */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/************************/ /************************/

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_debug.h" #include "debug.h"
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#if SILK_TIC_TOC #if SILK_TIC_TOC

View file

@ -32,7 +32,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define _CRT_SECURE_NO_DEPRECATE 1 #define _CRT_SECURE_NO_DEPRECATE 1
#endif #endif
#include "silk_typedef.h" #include "typedef.h"
#include <stdio.h> /* file writing */ #include <stdio.h> /* file writing */
#include <string.h> /* strcpy, strcmp */ #include <string.h> /* strcpy, strcmp */

View file

@ -28,8 +28,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include "silk_API.h" #include "API.h"
#include "silk_main.h" #include "main.h"
/************************/ /************************/
/* Decoder Super Struct */ /* Decoder Super Struct */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/**********************************************************/ /**********************************************************/
/* Core decoder. Performs inverse NSQ operation LTP + LPC */ /* Core decoder. Performs inverse NSQ operation LTP + LPC */

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
#include "silk_PLC.h" #include "PLC.h"
/****************/ /****************/
/* Decode frame */ /* Decode frame */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Decode side-information parameters from payload */ /* Decode side-information parameters from payload */
void silk_decode_indices( void silk_decode_indices(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Decode parameters from payload */ /* Decode parameters from payload */
void silk_decode_parameters( void silk_decode_parameters(

View file

@ -32,8 +32,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/*********************************************************** /***********************************************************
* Pitch analyser function * Pitch analyser function
********************************************************** */ ********************************************************** */
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_pitch_est_defines.h" #include "pitch_est_defines.h"
void silk_decode_pitch( void silk_decode_pitch(
opus_int16 lagIndex, /* I */ opus_int16 lagIndex, /* I */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/*********************************************/ /*********************************************/
/* Decode quantization indices of excitation */ /* Decode quantization indices of excitation */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Set decoder sampling rate */ /* Set decoder sampling rate */
void silk_decoder_set_fs( void silk_decoder_set_fs(

View file

@ -28,8 +28,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_DEFINE_H #ifndef SILK_DEFINE_H
#define SILK_DEFINE_H #define SILK_DEFINE_H
#include "silk_errors.h" #include "errors.h"
#include "silk_typedef.h" #include "typedef.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" extern "C"

View file

@ -28,16 +28,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include "silk_define.h" #include "define.h"
#include "silk_API.h" #include "API.h"
#include "silk_control.h" #include "control.h"
#include "silk_typedef.h" #include "typedef.h"
#include "silk_structs.h" #include "structs.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
#ifdef FIXED_POINT #ifdef FIXED_POINT
#include "silk_main_FIX.h" #include "main_FIX.h"
#else #else
#include "silk_main_FLP.h" #include "main_FLP.h"
#endif #endif
/****************************************/ /****************************************/

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/* Encode side-information parameters to payload */ /* Encode side-information parameters to payload */
void silk_encode_indices( void silk_encode_indices(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main.h" #include "main.h"
/*********************************************/ /*********************************************/
/* Encode quantization indices of excitation */ /* Encode quantization indices of excitation */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
void silk_LTP_analysis_filter_FIX( void silk_LTP_analysis_filter_FIX(
opus_int16 *LTP_res, /* O: LTP residual signal of length MAX_NB_SUBFR * ( pre_length + subfr_length ) */ opus_int16 *LTP_res, /* O: LTP residual signal of length MAX_NB_SUBFR * ( pre_length + subfr_length ) */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
void silk_LTP_scale_ctrl_FIX( void silk_LTP_scale_ctrl_FIX(
silk_encoder_state_FIX *psEnc, /* I/O encoder state FIX */ silk_encoder_state_FIX *psEnc, /* I/O encoder state FIX */

View file

@ -33,7 +33,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* Correlation Matrix Computations for LS estimate. * Correlation Matrix Computations for LS estimate.
**********************************************************************/ **********************************************************************/
#include "silk_main_FIX.h" #include "main_FIX.h"
/* Calculates correlation vector X'*t */ /* Calculates correlation vector X'*t */
void silk_corrVector_FIX( void silk_corrVector_FIX(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/****************/ /****************/
/* Encode frame */ /* Encode frame */

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Finds LPC vector from correlations, and converts to NLSF */ /* Finds LPC vector from correlations, and converts to NLSF */
void silk_find_LPC_FIX( void silk_find_LPC_FIX(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Head room for correlations */ /* Head room for correlations */
#define LTP_CORRS_HEAD_ROOM 2 #define LTP_CORRS_HEAD_ROOM 2

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Find pitch lags */ /* Find pitch lags */
void silk_find_pitch_lags_FIX( void silk_find_pitch_lags_FIX(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
void silk_find_pred_coefs_FIX( void silk_find_pred_coefs_FIX(
silk_encoder_state_FIX *psEnc, /* I/O encoder state */ silk_encoder_state_FIX *psEnc, /* I/O encoder state */

View file

@ -28,12 +28,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_MAIN_FIX_H #ifndef SILK_MAIN_FIX_H
#define SILK_MAIN_FIX_H #define SILK_MAIN_FIX_H
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_structs_FIX.h" #include "structs_FIX.h"
#include "silk_control.h" #include "control.h"
#include "silk_main.h" #include "main.h"
#include "silk_PLC.h" #include "PLC.h"
#include "silk_debug.h" #include "debug.h"
#include "entenc.h" #include "entenc.h"
#ifndef FORCE_CPP_BUILD #ifndef FORCE_CPP_BUILD

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Compute gain to make warped filter coefficients have a zero mean log frequency response on a */ /* Compute gain to make warped filter coefficients have a zero mean log frequency response on a */
/* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */ /* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* silk_prefilter. Prefilter for finding Quantizer input signal */ /* silk_prefilter. Prefilter for finding Quantizer input signal */
static inline void silk_prefilt_FIX( static inline void silk_prefilt_FIX(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Processing of gains */ /* Processing of gains */
void silk_process_gains_FIX( void silk_process_gains_FIX(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
/* Add noise to matrix diagonal */ /* Add noise to matrix diagonal */
void silk_regularize_correlations_FIX( void silk_regularize_correlations_FIX(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
/* Residual energy: nrg = wxx - 2 * wXx * c + c' * wXX * c */ /* Residual energy: nrg = wxx - 2 * wXx * c + c' * wXX * c */
opus_int32 silk_residual_energy16_covar_FIX( opus_int32 silk_residual_energy16_covar_FIX(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
/* Calculates residual energies of input subframes where all subframes have LPC_order */ /* Calculates residual energies of input subframes where all subframes have LPC_order */
/* of preceeding samples */ /* of preceeding samples */

View file

@ -86,28 +86,28 @@
<None Include="ReadMe.txt" /> <None Include="ReadMe.txt" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="silk_corrMatrix_FIX.c" /> <ClCompile Include="corrMatrix_FIX.c" />
<ClCompile Include="silk_encode_frame_FIX.c" /> <ClCompile Include="encode_frame_FIX.c" />
<ClCompile Include="silk_find_LPC_FIX.c" /> <ClCompile Include="find_LPC_FIX.c" />
<ClCompile Include="silk_find_LTP_FIX.c" /> <ClCompile Include="find_LTP_FIX.c" />
<ClCompile Include="silk_find_pitch_lags_FIX.c" /> <ClCompile Include="find_pitch_lags_FIX.c" />
<ClCompile Include="silk_find_pred_coefs_FIX.c" /> <ClCompile Include="find_pred_coefs_FIX.c" />
<ClCompile Include="silk_LTP_analysis_filter_FIX.c" /> <ClCompile Include="LTP_analysis_filter_FIX.c" />
<ClCompile Include="silk_LTP_scale_ctrl_FIX.c" /> <ClCompile Include="LTP_scale_ctrl_FIX.c" />
<ClCompile Include="silk_noise_shape_analysis_FIX.c" /> <ClCompile Include="noise_shape_analysis_FIX.c" />
<ClCompile Include="silk_prefilter_FIX.c" /> <ClCompile Include="prefilter_FIX.c" />
<ClCompile Include="silk_process_gains_FIX.c" /> <ClCompile Include="process_gains_FIX.c" />
<ClCompile Include="silk_regularize_correlations_FIX.c" /> <ClCompile Include="regularize_correlations_FIX.c" />
<ClCompile Include="silk_residual_energy16_FIX.c" /> <ClCompile Include="residual_energy16_FIX.c" />
<ClCompile Include="silk_residual_energy_FIX.c" /> <ClCompile Include="residual_energy_FIX.c" />
<ClCompile Include="silk_solve_LS_FIX.c" /> <ClCompile Include="solve_LS_FIX.c" />
<ClCompile Include="silk_warped_autocorrelation_FIX.c" /> <ClCompile Include="warped_autocorrelation_FIX.c" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="..\..\win32\config.h" /> <ClInclude Include="..\..\win32\config.h" />
<ClInclude Include="..\silk_SigProc_FIX.h" /> <ClInclude Include="..\SigProc_FIX.h" />
<ClInclude Include="silk_main_FIX.h" /> <ClInclude Include="main_FIX.h" />
<ClInclude Include="silk_structs_FIX.h" /> <ClInclude Include="structs_FIX.h" />
</ItemGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">

View file

@ -18,52 +18,52 @@
<None Include="ReadMe.txt" /> <None Include="ReadMe.txt" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="silk_corrMatrix_FIX.c"> <ClCompile Include="corrMatrix_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_encode_frame_FIX.c"> <ClCompile Include="encode_frame_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_find_LPC_FIX.c"> <ClCompile Include="find_LPC_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_find_LTP_FIX.c"> <ClCompile Include="find_LTP_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_find_pitch_lags_FIX.c"> <ClCompile Include="find_pitch_lags_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_find_pred_coefs_FIX.c"> <ClCompile Include="find_pred_coefs_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_LTP_analysis_filter_FIX.c"> <ClCompile Include="LTP_analysis_filter_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_LTP_scale_ctrl_FIX.c"> <ClCompile Include="LTP_scale_ctrl_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_noise_shape_analysis_FIX.c"> <ClCompile Include="noise_shape_analysis_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_prefilter_FIX.c"> <ClCompile Include="prefilter_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_process_gains_FIX.c"> <ClCompile Include="process_gains_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_regularize_correlations_FIX.c"> <ClCompile Include="regularize_correlations_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_residual_energy16_FIX.c"> <ClCompile Include="residual_energy16_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_residual_energy_FIX.c"> <ClCompile Include="residual_energy_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_solve_LS_FIX.c"> <ClCompile Include="solve_LS_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="silk_warped_autocorrelation_FIX.c"> <ClCompile Include="warped_autocorrelation_FIX.c">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
</ItemGroup> </ItemGroup>
@ -71,13 +71,13 @@
<ClInclude Include="..\..\win32\config.h"> <ClInclude Include="..\..\win32\config.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="silk_main_FIX.h"> <ClInclude Include="main_FIX.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\silk_SigProc_FIX.h"> <ClInclude Include="..\SigProc_FIX.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="silk_structs_FIX.h"> <ClInclude Include="structs_FIX.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
</ItemGroup> </ItemGroup>

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/*****************************/ /*****************************/
/* Internal function headers */ /* Internal function headers */

View file

@ -28,9 +28,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_STRUCTS_FIX_H #ifndef SILK_STRUCTS_FIX_H
#define SILK_STRUCTS_FIX_H #define SILK_STRUCTS_FIX_H
#include "silk_typedef.h" #include "typedef.h"
#include "silk_main.h" #include "main.h"
#include "silk_structs.h" #include "structs.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" extern "C"

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FIX.h" #include "main_FIX.h"
#define QC 10 #define QC 10
#define QS 14 #define QS 14

View file

@ -30,7 +30,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include "silk_main_FLP.h" #include "main_FLP.h"
/************************************************/ /************************************************/
/* LPC analysis filter */ /* LPC analysis filter */

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
#define RC_THRESHOLD 0.9999f #define RC_THRESHOLD 0.9999f

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
void silk_LTP_analysis_filter_FLP( void silk_LTP_analysis_filter_FLP(
silk_float *LTP_res, /* O LTP res MAX_NB_SUBFR*(pre_lgth+subfr_lngth) */ silk_float *LTP_res, /* O LTP res MAX_NB_SUBFR*(pre_lgth+subfr_lngth) */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
void silk_LTP_scale_ctrl_FLP( void silk_LTP_scale_ctrl_FLP(
silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */ silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */

View file

@ -28,7 +28,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef _SILK_SIGPROC_FLP_H_ #ifndef _SILK_SIGPROC_FLP_H_
#define _SILK_SIGPROC_FLP_H_ #define _SILK_SIGPROC_FLP_H_
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include <math.h> #include <math.h>
#ifdef __cplusplus #ifdef __cplusplus

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
/* Apply sine window to signal vector. */ /* Apply sine window to signal vector. */
/* Window types: */ /* Window types: */

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_typedef.h" #include "typedef.h"
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
/* compute autocorrelation */ /* compute autocorrelation */
void silk_autocorrelation_FLP( void silk_autocorrelation_FLP(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
#define MAX_FRAME_SIZE 384 /* subfr_length * nb_subfr = ( 0.005 * 16000 + 16 ) * 4 = 384*/ #define MAX_FRAME_SIZE 384 /* subfr_length * nb_subfr = ( 0.005 * 16000 + 16 ) * 4 = 384*/
#define MAX_NB_SUBFR 4 #define MAX_NB_SUBFR 4

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
/* Chirp (bw expand) LP AR filter */ /* Chirp (bw expand) LP AR filter */

View file

@ -33,7 +33,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* Correlation matrix computations for LS estimate. * Correlation matrix computations for LS estimate.
**********************************************************************/ **********************************************************************/
#include "silk_main_FLP.h" #include "main_FLP.h"
/* Calculates correlation vector X'*t */ /* Calculates correlation vector X'*t */
void silk_corrVector_FLP( void silk_corrVector_FLP(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/****************/ /****************/
/* Encode frame */ /* Encode frame */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
/* sum of squares of a silk_float array, with result as double */ /* sum of squares of a silk_float array, with result as double */
double silk_energy_FLP( double silk_energy_FLP(

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
void silk_find_LPC_FLP( void silk_find_LPC_FLP(
opus_int16 NLSF_Q15[], /* O NLSFs */ opus_int16 NLSF_Q15[], /* O NLSFs */

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
void silk_find_LTP_FLP( void silk_find_LTP_FLP(
silk_float b[ MAX_NB_SUBFR * LTP_ORDER ], /* O LTP coefs */ silk_float b[ MAX_NB_SUBFR * LTP_ORDER ], /* O LTP coefs */

View file

@ -30,8 +30,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
void silk_find_pitch_lags_FLP( void silk_find_pitch_lags_FLP(
silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */ silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
void silk_find_pred_coefs_FLP( void silk_find_pred_coefs_FLP(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
/* inner product of two silk_float arrays, with result as double */ /* inner product of two silk_float arrays, with result as double */
double silk_inner_product_FLP( /* O result */ double silk_inner_product_FLP( /* O result */

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
/* step up function, converts reflection coefficients to prediction coefficients */ /* step up function, converts reflection coefficients to prediction coefficients */
void silk_k2a_FLP( void silk_k2a_FLP(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
/* Solve the normal equations using the Levinson-Durbin recursion */ /* Solve the normal equations using the Levinson-Durbin recursion */
silk_float silk_levinsondurbin_FLP( /* O prediction error energy */ silk_float silk_levinsondurbin_FLP( /* O prediction error energy */

View file

@ -28,12 +28,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SILK_MAIN_FLP_H #ifndef SILK_MAIN_FLP_H
#define SILK_MAIN_FLP_H #define SILK_MAIN_FLP_H
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_structs_FLP.h" #include "structs_FLP.h"
#include "silk_main.h" #include "main.h"
#include "silk_define.h" #include "define.h"
#include "silk_debug.h" #include "debug.h"
#include "entenc.h" #include "entenc.h"
#ifdef __cplusplus #ifdef __cplusplus

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Compute gain to make warped filter coefficients have a zero mean log frequency response on a */ /* Compute gain to make warped filter coefficients have a zero mean log frequency response on a */
/* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */ /* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */

View file

@ -34,9 +34,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* Pitch analyser function * Pitch analyser function
* *
******************************************************************************/ ******************************************************************************/
#include "silk_SigProc_FLP.h" #include "SigProc_FLP.h"
#include "silk_SigProc_FIX.h" #include "SigProc_FIX.h"
#include "silk_pitch_est_defines.h" #include "pitch_est_defines.h"
#define SCRATCH_SIZE 22 #define SCRATCH_SIZE 22

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* /*
* silk_prefilter. Prefilter for finding Quantizer input signal * silk_prefilter. Prefilter for finding Quantizer input signal

View file

@ -29,8 +29,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
#include "silk_tuning_parameters.h" #include "tuning_parameters.h"
/* Processing of gains */ /* Processing of gains */
void silk_process_gains_FLP( void silk_process_gains_FLP(

View file

@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h" #include "config.h"
#endif #endif
#include "silk_main_FLP.h" #include "main_FLP.h"
void silk_regularize_correlations_FLP( void silk_regularize_correlations_FLP(
silk_float *XX, /* I/O Correlation matrices */ silk_float *XX, /* I/O Correlation matrices */

Some files were not shown because too many files have changed in this diff Show more