Commit fbf26e16 authored by bayers's avatar bayers
Browse files

slight change in ordering in the ifdef block to ensure better formatting after cleanup

parent 61cbf756
Loading
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -1576,11 +1576,12 @@ static bool parseCmdlIVAS_dec(
        return false;
    }

    if ( ( !arg->enableHeadRotation ) && ( !arg->enableExternalOrientation )
#ifdef FIX_807_VARIABLE_SPEED_DECODING
         && ( !arg->tsmEnabled )
    if ( ( !arg->enableHeadRotation ) && ( !arg->enableExternalOrientation ) && ( !arg->tsmEnabled ) )
#else
    if ( ( !arg->enableHeadRotation ) && ( !arg->enableExternalOrientation ) )
#endif
    )

    {
        arg->enable5ms = false;
    }