Commit f73b406d authored by norvell's avatar norvell
Browse files

Merge branch '307-cleanup-of-td-renderer-left-overs' into 'main'

Cleanup of unused files and inactive defines TDREND_HRTF_TABLE_METHODS TDREND_STANDALONE

See merge request !408
parents 4620ca45 fd81598f
Loading
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -1444,11 +1444,6 @@ typedef enum
typedef enum
{
    TDREND_HRFILT_Method_BSplineModel
#ifdef TDREND_HRTF_TABLE_METHODS
    ,
    TDREND_HRFILT_Method_Table_F,
    TDREND_HRFILT_Method_Table_S
#endif
} TDREND_HRFILT_Method_t;

typedef enum
+0 −6
Original line number Diff line number Diff line
@@ -5126,12 +5126,6 @@ void BSplineModelEvalDealloc(
);


#ifdef TDREND_HRTF_TABLE_METHODS
void TDREND_HRFILT_SetFiltSet(
    TDREND_HRFILT_FiltSet_t *HrFiltSet_p,                       /* i/o: HR hilter set structure                 */ 
    FILE *f_hrtf                                                /* i  : File handle for HR filter parameters    */
);
#endif

ivas_error TDREND_REND_RenderSourceHRFilt(
    TDREND_SRC_t *Src_p,                                        /* i/o: The source to be rendered               */
+0 −6
Original line number Diff line number Diff line
@@ -1507,12 +1507,6 @@ typedef struct TDREND_HRFILT_FiltSet_struct
    float *ItdSetNominal_p;
    float *LeftFiltSet_p;
    float *RightFiltSet_p;
#ifdef TDREND_HRTF_TABLE_METHODS
    int16_t *AzimStartIdx_p;
    int16_t *NumAzim_p;
    float *ElevFull_p;
    float ElevIncr;
#endif
    ModelParams_t ModelParams;
    ModelEval_t ModelEval;
    ModelParamsITD_t ModelParamsITD;
+0 −610

File changed.

Preview size limit exceeded, changes collapsed.

+0 −17
Original line number Diff line number Diff line
@@ -154,23 +154,6 @@ void TDREND_MIX_Dealloc(
                free( hBinRendererTd->HrFiltSet_p->RightFiltSet_p );
                hBinRendererTd->HrFiltSet_p->RightFiltSet_p = NULL;
            }
#ifdef TDREND_HRTF_TABLE_METHODS
            if ( hBinRendererTd->HrFiltSet_p->NumAzim_p != NULL )
            {
                free( hBinRendererTd->HrFiltSet_p->NumAzim_p );
                hBinRendererTd->HrFiltSet_p->NumAzim_p = NULL;
            }
            if ( hBinRendererTd->HrFiltSet_p->AzimStartIdx_p != NULL )
            {
                free( hBinRendererTd->HrFiltSet_p->AzimStartIdx_p );
                hBinRendererTd->HrFiltSet_p->AzimStartIdx_p = NULL;
            }
            if ( hBinRendererTd->HrFiltSet_p->ElevFull_p != NULL )
            {
                free( hBinRendererTd->HrFiltSet_p->ElevFull_p );
                hBinRendererTd->HrFiltSet_p->ElevFull_p = NULL;
            }
#endif
        }

        free( hBinRendererTd->HrFiltSet_p );
Loading