Commit 9a132268 authored by multrus's avatar multrus
Browse files

[cleanup] accept FIX_WARNING_RENDER_CONFIG

parent 47b6824d
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -156,7 +156,6 @@

/* #################### Start BASOP porting switches ############################ */

#define FIX_WARNING_RENDER_CONFIG                       /* Orange: fix warning on windows build */
#define NONBE_FIX_991_PARAMBIN_BINARY_HRTF              /* Nokia: issue #991: fix using of binary file HRTF in ParamBin (to actiate when USE_NEW_HRTF_BINARY_FILE_FORMAT and FIX_777_COMBI_RENDER_CONFIG_FILE are on  )*/
#define LC3PLUS_LEA_COMPAT_BITRATES_48_6                /* FhG: treat split-rendering 256kbps lc3plus 10ms 0dof bitrate as sentinel value for LEA compatible 48_6 bitrate (124 kbps per channel)  */
#define NONBE_FIX_1091_PMC_LOW_SIGNAL_BURSTS            /* FhG: fix for #1091, fix limit calculation for the regularized inverse of Kx to avoid bursts in very low signals  */
+0 −4
Original line number Diff line number Diff line
@@ -438,11 +438,7 @@ static ivas_error read_bin_bits(
    *pTarget = 0;
    for ( n = 0; n < nBits; n++ )
    {
#ifdef FIX_WARNING_RENDER_CONFIG
        nByte = (uint32_t) ( ( this->readOffset + n ) >> 3 );
#else
        nByte = ( this->readOffset + n ) >> 3;
#endif
        bit = this->pBitstream[nByte] >> ( 7 - ( ( this->readOffset + n ) % 8 ) ) & 1;
        *pTarget = ( *pTarget << 1 ) + bit;
    }