Commit c0378833 authored by norvell's avatar norvell
Browse files

FORCE_TD_INTP: Temporary fix for clicks in 1195. Increases complexity.

parent 91e47672
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -183,6 +183,7 @@

#define NONBE_FIX_1174_MCMASA_LBR_LOOP_ERROR            /* Nokia: Fix issue 1174 by removing the unnecessary inner loop causing problems. */
#define NONBE_FIX_1176_OSBA_REVERB_JBM_ASAN_ERROR       /* Ericsson: Issue 1176, fix in TDREND_firfilt for subframes shorter than the filter length */
#define FORCE_TD_INTP                                   /* Ericsson: Temporary fix for clicks in 1195. Increases complexity. */

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

+4 −0
Original line number Diff line number Diff line
@@ -171,7 +171,11 @@ ivas_error ivas_td_binaural_renderer_sf(
                c_indx++;
            }
        }
#ifdef FORCE_TD_INTP
        if ( 1 )
#else
        if ( subframe_idx == ism_md_subframe_update_jbm )
#endif
        {
#ifdef OBJ_EDITING_API
            if ( st_ivas->ivas_format == ISM_FORMAT || st_ivas->ivas_format == SBA_ISM_FORMAT )
+4 −0
Original line number Diff line number Diff line
@@ -440,7 +440,11 @@ ivas_error TDREND_GetMix(
    int16_t intp_count;
    int16_t subframe_update_flag;

#ifdef FORCE_TD_INTP
    subframe_update_flag = TRUE;
#else
    subframe_update_flag = subframe_idx == ism_md_subframe_update;
#endif

    error = IVAS_ERR_OK;