Commit 291b939e authored by emerit's avatar emerit
Browse files

fix if else macro

parent aa4403e1
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2343,7 +2343,7 @@ ivas_error ivas_jbm_dec_render_fx(
                move16();

#ifdef FIX_1785_ASSERT_IN_IVAS_JBM_DEC_RENDER_FX
                if ( crendInPlaceRotation )
                IF( crendInPlaceRotation )
                {
                    FOR( i = 0; i < nchan_in; i++ )
                    {
@@ -2354,7 +2354,7 @@ ivas_error ivas_jbm_dec_render_fx(
                        }
                    }
                }
                else
                ELSE
                {
                    FOR( i = 0; i < nchan_in; i++ )
                    {
@@ -2405,11 +2405,11 @@ ivas_error ivas_jbm_dec_render_fx(
                }

#ifdef FIX_1785_ASSERT_IN_IVAS_JBM_DEC_RENDER_FX
                if ( crendInPlaceRotation )
                IF( crendInPlaceRotation )
                {
                    n = nchan_in;
                }
                else
                ELSE
                {
                    n = nchan_out;
                }