Commit 4fd4d04b authored by Sumeyra Demir Kanik's avatar Sumeyra Demir Kanik
Browse files

Merge branch 'main' into 488-waveform-and-md-desynchronized-in-external-renderer

parents 52c847a4 d37ae1e8
Loading
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2352,7 +2352,6 @@ static ivas_error decodeVoIP(
    uint32_t nextPacketRcvTime_ms = 0;
    uint32_t systemTime_ms = 0;
    uint32_t systemTimeInc_ms = (uint32_t) JBM_FRONTEND_FETCH_FRAMESIZE_MS;
    int32_t nFramesWritten = 0;
    int32_t nFramesFed = 0;


@@ -2710,7 +2709,6 @@ static ivas_error decodeVoIP(

        frame++;
        systemTime_ms += systemTimeInc_ms;
        nFramesWritten++;

#ifdef WMOPS
        update_mem();
+1 −1
Original line number Diff line number Diff line
@@ -3522,7 +3522,7 @@ static void parseSceneDescriptionFile(
    return;
}

static void printSupportedAudioConfigs()
static void printSupportedAudioConfigs( void )
{
    uint16_t i;
    const char *supportedFormats[] = {

lib_com/options.h

100644 → 100755
+3 −0
Original line number Diff line number Diff line
@@ -206,6 +206,9 @@
#define FIX_622_SILENCE_USAN_WARNING                    /* FhG: silenceusan warning in ifft code */

#define FIX_615_UBSAN_SPAR_TO_DIRAC                     /*Dlb : Fix for UBSAN issue 615*/
#define FIX_626_VARIABLE_TYPE_MDCT_CONC                 /* FhG: trivial fix to fix USAN error */
#define FIX_616_DIV_ZERO_MCT                            /*FhG : Fix UBSAN division by zero error of issue 616*/

/* ################## End BE DEVELOPMENT switches ######################### */


+1 −1
Original line number Diff line number Diff line
@@ -387,7 +387,7 @@ int16_t dbgread(
 * Closes opened files and frees allocated memory
 *--------------------------------------------------------------------*/

void dbgclose()
void dbgclose( void )
{
    int16_t i;

+1 −1
Original line number Diff line number Diff line
@@ -423,7 +423,7 @@ void snr_celp(
 * Finalizes and presents accumulated SNR data
 *--------------------------------------------------------------------*/

void print_snr()
void print_snr( void )
{
    int16_t i;
    double snr, segsnr, wsegsnr;
Loading