Commit 7d4a327e authored by malenov's avatar malenov
Browse files

change free_() to its uninstrumented version

parent 24deb2ae
Loading
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+51 −0
Original line number Diff line number Diff line
################################################################################
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
################################################################################

/ci
/obj
/res
/scripts
/tests
/tv
/Workspace_msvc/Debug_renderer
/Workspace_msvc/Debug_lib_util
/Workspace_msvc/Debug_lib_rend
/Workspace_msvc/Debug_lib_enc
/Workspace_msvc/Debug_lib_dec
/Workspace_msvc/Debug_lib_debug
/Workspace_msvc/Debug_lib_com
/Workspace_msvc/Debug_encoder
/Workspace_msvc/Debug_decoder
/__backup
/Workspace_msvc
/tracefile_sim
/tmp.192
/test.json
/syn.wav
/syn.ref
/syn
/stvST32c_-stereo_32000_32.bit
/stvFOA48c_ivasbr13k_DTX1_Gain0_SID.192
/signer_m_-ism_1_NULL_32000_32.bit
/report.html
/report-junit.xml
/out.wav
/libivasutil.a
/libivasrend.a
/libivasenc.a
/libivasdec.a
/libivasdebug.a
/libivascom.a
/IVAS_rend_ref
/IVAS_rend.exe
/IVAS_rend
/IVAS_dec_ref
/IVAS_dec.exe
/IVAS_dec
/IVAS_cod_ref
/IVAS_cod.exe
/IVAS_cod
/bit
/10dB.fer
*.bak
+1 −1
Original line number Diff line number Diff line
@@ -1082,7 +1082,7 @@ void WMOPS_destroy( void )
    {
        if ( NULL != objectName[i] )
        {
            free_( objectName[i] );
            free( objectName[i] );
            objectName[i] = NULL;
        }
    }
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@

#define SUPPORT_JBM_TRACEFILE                   /* Support for JBM tracefile, which is needed for 3GPP objective/subjective testing, but not relevant for real-world implementations */

//#define WMOPS                                   /* Activate complexity and memory counters */
#define WMOPS                                   /* Activate complexity and memory counters */
#ifdef WMOPS
/*#define WMOPS_PER_FRAME*/                     /* Output per-frame complexity (writes one float value per frame to the file "wmops_analysis") */
/*#define MEM_COUNT_DETAILS*/                   /* Output detailed memory analysis for the worst-case frame (writes to the file "mem_analysis.csv") */