Commit 9044ab55 authored by norvell's avatar norvell
Browse files

Merge branch '892-compiler-errors-when-debugging-is-on' into 'main'

Resolve "Compiler errors when DEBUGGING is ON"

See merge request !601
parents 073fb11b dbeb44fc
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -795,7 +795,6 @@ ivas_error config_acelp1(
#ifdef DEBUGGING
#ifdef REMOVE_IVAS_UNUSED_PARAMETERS_WARNING
    (void) active_cnt;
    (void) core_brate_inpI;
#endif
#endif
    ivas_error error;
+3 −0
Original line number Diff line number Diff line
@@ -17,6 +17,9 @@
#include "ivas_rom_dec.h"
#include "ivas_prot_fx.h"
#endif
#ifdef DEBUGGING
#include "debug.h"
#endif


#define CNA_ACT_DN_LARGE_PARTITION 50    /* index of the first larger partition */
+3 −0
Original line number Diff line number Diff line
@@ -13,6 +13,9 @@
#include "prot_fx.h"    /* Function prototypes                    */
#include "basop_util.h" /* Function prototypes                    */
#include "prot_fx_enc.h"
#ifdef DEBUGGING
#include "debug.h"
#endif

/*-------------------------------------------------------------------*
 * amr_wb_enc()
+3 −0
Original line number Diff line number Diff line
@@ -19,6 +19,9 @@
#include "ivas_prot_fx.h"
#include "ivas_rom_com_fx.h"
#endif
#ifdef DEBUGGING
#include "debug.h"
#endif


/* Up to the Autocorrelation it is the same code as in GetMDCT, with the difference in the parameters in the call to tcx_windowing_analysis */
+5 −0
Original line number Diff line number Diff line
/*====================================================================================
    EVS Codec 3GPP TS26.452 Aug 12, 2021. Version 16.3.0
  ====================================================================================*/

#include <stdint.h>
#include <assert.h>
#include "options.h" /* Compilation switches                   */
@@ -10,10 +11,14 @@
#include "prot_fx.h"    /* Function prototypes                    */
#include "basop_util.h" /* Function prototypes                    */
#include "prot_fx_enc.h"
#ifdef DEBUGGING
#include "debug.h"
#endif

/*-------------------------------------------------------------------*
 *  Local function prototypes
 *-------------------------------------------------------------------*/

#ifdef IVAS_FLOAT_FIXED
static void initFrameHeader_loc( Encoder_State *st );
static void writeFrameHeader_loc( Encoder_State *st );
Loading