Commit 5fceb74b authored by norvell's avatar norvell
Browse files

Reduce MAX_ANGULAR_STEP in TD renderer filter interpolation. Fix observed clicks in IVAS_rend

parent 49653d6f
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1442,7 +1442,11 @@ typedef enum
#define SFX_SPAT_BIN_NUM_SUBSAMPLES             64
#define ITD_MEM_LEN                             (MAX_ITD + SFX_SPAT_BIN_SINC_M)
#define L_SUBFRAME5MS_48k                       (L_FRAME48k/4)
#ifdef FIX_421_TD_INT_TUNE
#define MAX_ANGULAR_STEP                        (0.01f)
#else
#define MAX_ANGULAR_STEP                        (1.0f)
#endif
#define MAX_ANGULAR_STEP_INV                    ( 1.0f / MAX_ANGULAR_STEP )
#define MAX_INTERPOLATION_STEPS                 12

+1 −0
Original line number Diff line number Diff line
@@ -149,6 +149,7 @@
#define SNS_MSVQ                                        /* FhG: contribution 33 - MSVQ for SNS parameters at stereo mid bitrates */

#define PARAMMC_SHORT_ENC_MDFT                          /* FhG: Issue 410: complexity optimization for parametric Multichannel modes */
#define FIX_421_TD_INT_TUNE                             /* Eri: Issue 421: Increase use of interpolation in TD renderer filter transition */

/* ################## End DEVELOPMENT switches ######################### */
/* clang-format on */