Commit bd6345ae authored by vaclav's avatar vaclav
Browse files

cleaning

parent 4b1a472b
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -46,9 +46,6 @@
    <ClCompile Include="..\lib_enc\enc_gen_voic_rf_fx.c">
      <Filter>encoder_evs_c</Filter>
    </ClCompile>
    <ClCompile Include="..\lib_enc\enc_gen_voic_fx.c">
      <Filter>encoder_evs_c</Filter>
    </ClCompile>
    <ClCompile Include="..\lib_enc\enc_nelp_fx.c">
      <Filter>encoder_evs_c</Filter>
    </ClCompile>
@@ -599,6 +596,9 @@
    <ClCompile Include="..\lib_enc\rom_enc_fx.c">
      <Filter>encoder_all_c</Filter>
    </ClCompile>
    <ClCompile Include="..\lib_enc\enc_gen_voic_fx.c">
      <Filter>encoder_all_c</Filter>
    </ClCompile>
  </ItemGroup>
  <ItemGroup>
    <ClInclude Include="..\lib_enc\lib_enc.h" />
+3 −3
Original line number Diff line number Diff line
/*====================================================================================
    EVS Codec 3GPP TS26.452 Aug 12, 2021. Version 16.3.0
  ====================================================================================*/

#include <stdint.h>
#include "options.h"      /* Compilation switches                   */
#include "cnst.h"         /* Common constants                       */
//#include "prot_fx.h"       /* Function prototypes                    */
#include "rom_com_fx.h"   /* Static table prototypes                */
#include "rom_com.h"      /* Static table prototypes                */
#include "prot_fx.h"      /* Function prototypes                    */
+5 −3
Original line number Diff line number Diff line
/*====================================================================================
    EVS Codec 3GPP TS26.452 Aug 12, 2021. Version 16.3.0
  ====================================================================================*/

#include <stdint.h>
#include "options.h"     /* Compilation switches                   */
#include "cnst.h"        /* Common constants                       */
//#include "prot_fx.h"       /* Function prototypes                    */
#include "rom_com_fx.h"  /* Static table prototypes                */
#include "rom_com.h"     /* Common constants                       */
#include "prot_fx.h"     /* Function prototypes                    */
#include "prot_fx_enc.h" /* Function prototypes                    */
#include "basop_util.h"  /* Function prototypes                    */


/*-------------------------------------------------------------------*
 * encod_amr_wb()
 *
 * Encode excitation signal in AMR-WB IO mode
 *-------------------------------------------------------------------*/

void encod_amr_wb_fx(
    Encoder_State *st,           /* i/o: state structure                         */
    const Word16 speech[],       /* i  : input speech                            Q_new-1*/
+5 −5
Original line number Diff line number Diff line
/*====================================================================================
    EVS Codec 3GPP TS26.452 Aug 12, 2021. Version 16.3.0
  ====================================================================================*/

#include <stdint.h>
#include "options.h"     /* Compilation switches                   */
#include "cnst.h"        /* Common constants                       */
#include "rom_com_fx.h"  /* Static table prototypes                */
#include "rom_com.h"     /* Static table prototypes                */
//#include "prot_fx.h"       /* Function prototypes                    */
#include "prot_fx.h"     /* Function prototypes                    */
#include "prot_fx_enc.h" /* Function prototypes                    */

+1 −1
Original line number Diff line number Diff line
/*====================================================================================
    EVS Codec 3GPP TS26.452 Aug 12, 2021. Version 16.3.0
  ====================================================================================*/

#include <stdint.h>
#include "options.h" /* Compilation switches                   */
#include "cnst.h"    /* Common constants                       */
//#include "prot_fx.h"       /* Function prototypes                    */
#include "basop_util.h"
#include "prot_fx.h"     /* Function prototypes                    */
#include "prot_fx_enc.h" /* Function prototypes                    */
Loading