Commit 4a87b469 authored by malenov's avatar malenov
Browse files

bug fixes

parent 0ad2254d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -929,7 +929,7 @@ int main(
                fprintf( stderr, "Error: %s\n", ivas_error_to_string( error ) );
                exit( -1 );
            }
            IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, args.inConfig.masaBuses[i].inputChannelIndex, numChannels );
            IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.masaBuses[i].inputChannelIndex, numChannels );

            if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, masaIds[i], tmpBuffer ) ) != IVAS_ERR_OK )
            {
+0 −1
Original line number Diff line number Diff line
@@ -163,7 +163,6 @@
#ifndef BASOP_NOGLOB
Word40 L40_shl( Word40 L40_var1, Word16 var2 )
#else  /* BASOP_NOGLOB */

Word40 L40_shl_o( Word40 L40_var1, Word16 var2, Flag *Overflow )
#endif /* BASOP_NOGLOB */
{
+4 −3
Original line number Diff line number Diff line
@@ -33,11 +33,9 @@
/*====================================================================================
    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) */

/** \file jbm_jb4_inputbuffer.c RTP input buffer with fixed capacity. */

/* system includes */
#include <assert.h>
#include <stdint.h>
#include "options.h"
@@ -46,9 +44,10 @@
#ifdef DEBUGGING
#include "debug.h"
#endif
/* local includes */
#include "jbm_jb4_inputbuffer.h"

#define WMC_TOOL_SKIP


/** input buffer with fixed capacity */
struct JB4_INPUTBUFFER
@@ -359,3 +358,5 @@ uint16_t JB4_INPUTBUFFER_Size(

    return ret;
}

#undef WMC_TOOL_SKIP
 No newline at end of file
+3 −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) */

/*! \file jbm_jb4sb.c EVS Jitter Buffer Management Interface */

@@ -54,6 +53,7 @@
#include "jbm_jb4sb.h"
#include "prot.h"

#define WMC_TOOL_SKIP

#define JB4_MIN( a, b ) ( ( a ) > ( b ) ? ( b ) : ( a ) )
#define JB4_MAX( a, b ) ( ( a ) > ( b ) ? ( a ) : ( b ) )
@@ -1508,3 +1508,5 @@ static int16_t JB4_inputBufferCompareFunction(

    return result;
}

#undef WMC_TOOL_SKIP
 No newline at end of file