Commit c1a1be2d authored by Arash Azizi's avatar Arash Azizi
Browse files

issue: 2389 adding Macro and fixing function formatting

parent 365cdb66
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -100,6 +100,7 @@
#define FIX_BASOP_2361_OTR                              /* FhG: Basop issue 2361: Orientation tracking tests for equivalent rotations fail */
#define FIX_2396_CONSTANT_STRIDE_IN_TC_BUFFER           /* FhG/VA: basop issue 2396: keep TC channel pointers in one constant place during decoding and rendering */
#define FIX_2408_FD_BWE_UPDATE                          /* VA: basop issue 2408: bug-fix in the FD BWE memory updates in wb_pre_proc_ivas_fx()  */
#define HARMONIZE_READ_DECODE_TNS                       /* FhG basop 2389: Harm between two pairs of functions. */

/* ##################### End NON-BE switches ########################### */

+8 −1
Original line number Diff line number Diff line
@@ -228,8 +228,15 @@ void SetParameters_fx(
            IF( s_and( param->pSubParamBitMap != NULL, value > 0 ) )
            {
                pTmp = pParameter;
#ifdef HARMONIZE_READ_DECODE_TNS
                if (pSubStruct != NULL)
                {
                    pTmp = pSubStruct;
                }
#else
                if (pSubStruct != NULL)
                    pTmp = pSubStruct;
#endif
                SetParameters( param->pSubParamBitMap, value, pTmp, pStream, pnSize );
            }
        }