Commit 4485f775 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] actually fix if statement

parent 8cc5e62a
Loading
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -2246,10 +2246,8 @@ static ivas_error decodeG192(
            int16_t enable5ms;
            IVAS_DEC_Get5msFlag( hIvasDec, &enable5ms );
            arg.enable5ms = enable5ms;
            if ( !enable5ms )
#else
            if ( !arg.enable5ms )
#endif
            if ( !arg.enable5ms )
            {
                /* Skip over 3 following head positions - they are given on 5ms grid */
                for ( i = 0; i < 3; ++i )
@@ -2290,10 +2288,8 @@ static ivas_error decodeG192(
            int16_t enable5ms;
            IVAS_DEC_Get5msFlag( hIvasDec, &enable5ms );
            arg.enable5ms = enable5ms;
            if ( !enable5ms )
#else
            if ( !arg.enable5ms )
#endif
            if ( !arg.enable5ms )
            {
                /* Skip over 3 following entries in file - they are given on 5ms grid */
                for ( i = 0; i < 3; ++i )