Commit 2add7af1 authored by Serdar Buyuksarac's avatar Serdar Buyuksarac
Browse files

Some formatting

parent e6e02be0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2557,6 +2557,9 @@ void ivas_initialize_handles_dec(
    st_ivas->hSetOfHRTF = NULL;
    st_ivas->hHrtfFastConv = NULL;
    st_ivas->hHrtfParambin = NULL;
#ifdef NONBE_FIX_922_PRECOMPUTED_HRTF_PROPERTIES
    st_ivas->hHrtfStatistics = NULL;
#endif
    st_ivas->hoa_dec_mtx = NULL;
    st_ivas->hMasaIsmData = NULL;
    st_ivas->hSbaIsmData = NULL;
+1 −3
Original line number Diff line number Diff line
@@ -243,8 +243,7 @@ void ivas_HRTF_parambin_binary_close(
 * Allocate HRTF binary handle for statistics handler
 *-----------------------------------------------------------------------*/

ivas_error
ivas_HRTF_statistics_binary_open(
ivas_error ivas_HRTF_statistics_binary_open(
    HRTFS_STATISTICS **hHrtfStatistics )
{
    *hHrtfStatistics = (HRTFS_STATISTICS *) malloc( sizeof( HRTFS_STATISTICS ) );
@@ -253,7 +252,6 @@ ivas_HRTF_statistics_binary_open(
        return IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for statistics HRTF tables!" );
    }


    return IVAS_ERR_OK;
}

+10 −0
Original line number Diff line number Diff line
@@ -617,6 +617,16 @@ void ivas_HRTF_parambin_binary_close(
    HRTFS_PARAMBIN **hHrtfParambin                              /* i/o: Parametric binauralizer HRTF structure  */
);

#ifdef NONBE_FIX_922_PRECOMPUTED_HRTF_PROPERTIES
ivas_error ivas_HRTF_statistics_binary_open(
    HRTFS_STATISTICS **hHrtfStatistics                          /* i/o: HRTF statistics structure               */
);

void ivas_HRTF_statistics_binary_close(
    HRTFS_STATISTICS **hHrtfStatistics                          /* i/o: HRTF statistics structure               */
);
#endif

ivas_error ivas_HRTF_CRend_binary_open(
    HRTFS_CREND **hSetOfHRTF                                    /* i/o: Set of HRTF handle                      */
);