Commit b3792048 authored by Sandesh Venkatesh's avatar Sandesh Venkatesh
Browse files

Merge branch 'fix-compilation-with-debugging' into 'main'

Fixes for compiling with DEBUGGING active

See merge request !385
parents 91e53563 9828ca61
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@
 * Local constants
 *------------------------------------------------------------------------------------------*/

#if !defined( WMOPS_FLT )
#if !defined( DEBUGGING ) && !defined( WMOPS_FLT )
static
#endif
    int32_t frame = 0; /* Counter of frames */
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@
 * Local constants, enums
 *------------------------------------------------------------------------------------------*/

#if !defined( WMOPS )
#if !defined( DEBUGGING ) && !defined( WMOPS )
static
#endif
    int32_t frame = 0; /* Counter of frames */
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@
#define IVAS_MIN16B_FLT ( -32768.0f )
#define IVAS_MAX16B_FX  32767
#define IVAS_MIN16B_FX  ( -32768 )
#if !defined( WMOPS )
#if !defined( DEBUGGING ) && !defined( WMOPS )
static
#endif
    int32_t frame = 0;
+1 −0
Original line number Diff line number Diff line
@@ -615,6 +615,7 @@ ivas_error config_acelp1(
    Word32 core_brate_inpI = core_brate_inp;
#ifdef REMOVE_IVAS_UNUSED_PARAMETERS_WARNING
    (void) active_cnt;
    (void) core_brate_inpI;
#endif
#endif
    ivas_error error;
+2 −2
Original line number Diff line number Diff line
@@ -3161,7 +3161,7 @@ static ivas_error ivas_rend_crendConvolver(


            ivas_mdft_fx( pIn, pFreq_buf_re, pFreq_buf_im, subframe_length, subframe_length );
#ifdef DEBUGGING
#ifdef DUMPS_ENABLED
            dbgwrite_txt( pFreq_buf_re, subframe_length, "Fixed_pFreq_buf_re_mdft.txt", NULL );
            dbgwrite_txt( pFreq_buf_im, subframe_length, "Fixed_pFreq_buf_im_mdft.txt", NULL );
#endif
@@ -3223,7 +3223,7 @@ static ivas_error ivas_rend_crendConvolver(

        ivas_imdft_fx( tmp_out_re, tmp_out_im, pOut, subframe_length );

#ifdef DEBUGGING
#ifdef DUMPS_ENABLED
        dbgwrite_txt( pOut, subframe_length << 1, "Fixed_imdft_out.txt", NULL );
#endif
        pFreq_buf_re = &pcm_out[j][i_ts * subframe_length];
Loading