Commit 0ad2254d authored by malenov's avatar malenov
Browse files

replacement of WMC_TOOL_SKIP_FILE with WMC_TOOL_SKIP

parent b792f76e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -30,7 +30,6 @@

*******************************************************************************************************/

/* WMC_TOOL_SKIP_FILE (basic ops file) */
/*                                                      v.2.3 - 30.Nov.2009
  =============================================================================

@@ -167,6 +166,8 @@ HISTORY:
#include "ivas_error.h"
#include "ivas_error_utils.h"

#define WMC_TOOL_SKIP

#ifdef _MSC_VER
#pragma warning( disable : 4310 )
#endif
@@ -3203,4 +3204,5 @@ Word32 L_msu0( Word32 L_var3, Word16 var1, Word16 var2 )

#endif /* ! BASOP_NOGLOB */

#undef WMC_TOOL_SKIP
/* end of file */
+4 −2
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@
/*====================================================================================
    EVS Codec 3GPP TS26.443 Nov 04, 2021. Version 12.14.0 / 13.10.0 / 14.6.0 / 15.4.0 / 16.3.0
  ====================================================================================*/
/* WMC_TOOL_SKIP_FILE (basic ops file) */

#include <assert.h>
#include <stdint.h>
@@ -41,10 +40,11 @@
#include "typedef.h"
#include "basop_proto_func.h"
#include "cnst.h"

#include "basop_util.h"
#include "stl.h"

#define WMC_TOOL_SKIP

#define UNROLL_CHEBYSHEV_INNER_LOOP
#define NC_MAX       8
#define GUESS_TBL_SZ 256
@@ -259,3 +259,5 @@ void basop_lsf2lsp( const Word16 lsf[], Word16 lsp[] )

    return;
}

#undef WMC_TOOL_SKIP
 No newline at end of file
+4 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@
/*====================================================================================
    EVS Codec 3GPP TS26.443 Nov 04, 2021. Version 12.14.0 / 13.10.0 / 14.6.0 / 15.4.0 / 16.3.0
  ====================================================================================*/
/* WMC_TOOL_SKIP_FILE (basic ops file) */

#include <assert.h>
#include <stdint.h>
@@ -42,6 +41,8 @@
#include "control.h"
#include "basop_util.h"

#define WMC_TOOL_SKIP

#define NC_MAX 8

static Word16 E_LPC_f_lsp_pol_get( const Word16 lsp[], Word32 f[], const Word16 n, const Word16 past_Ovf, const Word16 isMODE1 );
@@ -309,3 +310,5 @@ static Word16 E_LPC_f_lsp_pol_get(
    }
    return Ovf;
}

#undef WMC_TOOL_SKIP
 No newline at end of file
+4 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@
/*====================================================================================
    EVS Codec 3GPP TS26.443 Nov 04, 2021. Version 12.14.0 / 13.10.0 / 14.6.0 / 15.4.0 / 16.3.0
  ====================================================================================*/
/* WMC_TOOL_SKIP_FILE (basic ops file) */

#include "basop_mpy.h"
#include <stdint.h>
@@ -42,6 +41,8 @@
#include "debug.h"
#endif

#define WMC_TOOL_SKIP

Word32 Mpy_32_16_1( Word32 x, Word16 y )
{
    Word32 mh;
@@ -87,3 +88,5 @@ Word32 Mpy_32_32( Word32 x, Word32 y )

    return ( mh );
}

#undef WMC_TOOL_SKIP
 No newline at end of file
+4 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@
/*====================================================================================
    EVS Codec 3GPP TS26.443 Nov 04, 2021. Version 12.14.0 / 13.10.0 / 14.6.0 / 15.4.0 / 16.3.0
  ====================================================================================*/
/* WMC_TOOL_SKIP_FILE (basic ops file) */

#include <assert.h>
#include <stdint.h>
@@ -47,6 +46,8 @@
#include "prot.h"
#include "rom_com.h"

#define WMC_TOOL_SKIP

/* compare two positive normalized 16 bit mantissa/exponent values */
/* return value: positive if first value greater, negative if second value greater, zero if equal */
static Word16 compMantExp16Unorm( Word16 m1, Word16 e1, Word16 m2, Word16 e2 )
@@ -436,3 +437,5 @@ void basop_PsychAdaptLowFreqDeemph( Word32 x[], const Word16 lpcGains[], const W
        }
    }
}

#undef WMC_TOOL_SKIP
 No newline at end of file
Loading