Commit 9ff20d60 authored by kinuthia's avatar kinuthia
Browse files

temporarily introduce bug to trigger failure case

Revert "Fix for limiter deactivation in EVS and AMR-WB IO modes under
API_5MS"  + run be-2-evs-windows job on MR pipeline
- This reverts commit 541d242e and moves
be-2-evs-windows job to MR pipeline
parent c9e0d712
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -907,7 +907,7 @@ lc3plus-ensure-no-code-changes:
# check bitexactness to EVS windows binaries
be-2-evs-windows:
  extends:
    - .rules-main-push
    - .rules-merge-request
  tags:
    - ivas-windows
  stage: test
+3 −1
Original line number Diff line number Diff line
@@ -218,7 +218,9 @@ typedef enum
#endif
    CmdLnOptionId_referenceVectorFile,
    CmdLnOptionId_exteriorOrientationFile,
#ifdef API_5MS
    CmdLnOptionId_framing5ms,
#endif
    CmdLnOptionId_syncMdDelay,
    CmdLnOptionId_directivityPatternId,
    CmdLnOptionId_acousticEnvironmentId
@@ -1532,8 +1534,8 @@ int main(
#endif
        );

        int16_t num_subframes, sf_idx;
#ifdef API_5MS
        int16_t num_subframes, sf_idx;
        num_subframes = ( args.framing_5ms ) ? 1 : IVAS_MAX_PARAM_SPATIAL_SUBFRAMES;
#else
        num_subframes = IVAS_MAX_PARAM_SPATIAL_SUBFRAMES;
+3 −16
Original line number Diff line number Diff line
@@ -1192,15 +1192,9 @@ ivas_error ivas_jbm_dec_render(
    if ( st_ivas->hDecoderConfig->Opt_Limiter )
#endif
    {
#ifdef API_5MS
        if ( !( st_ivas->ivas_format == MONO_FORMAT ) )
        {
#endif

#ifndef DISABLE_LIMITER
        ivas_limiter_dec( st_ivas->hLimiter, p_output, nchan_out, *nSamplesRendered, st_ivas->BER_detect );
#endif
#ifdef API_5MS
        }
#endif
    }

@@ -1410,15 +1404,8 @@ ivas_error ivas_jbm_dec_flush_renderer(
    if ( st_ivas->hDecoderConfig->Opt_Limiter )
#endif
    {
#ifdef API_5MS
        if ( !( st_ivas->ivas_format == MONO_FORMAT ) )
        {
#endif
#ifndef DISABLE_LIMITER
        ivas_limiter_dec( st_ivas->hLimiter, p_output, st_ivas->hDecoderConfig->nchan_out, *nSamplesRendered, st_ivas->BER_detect );
#endif
#ifdef API_5MS
        }
#endif
    }