Commit 26880763 authored by multrus's avatar multrus
Browse files

[cleanup] accept FIX_RETURN

parent eab3359f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -170,7 +170,6 @@
#define TMP_FIX_1119_SPLIT_RENDERING_VOIP               /* FhG: Add error check for unsupported config: split rendering with VoIP mode */

#define FIX_POINT_ROM_CONST                             /* Ora: issue #1150 HRTF ROM tables should be defined as 'const'*/
#define FIX_RETURN                                      /* VA: fix location of function returns */
#define FIX_1135_EXT_RENDERER_HANDLES                   /* VA: issue 1135: Memory usage reduction in external renderer: Allocate only handles that are really needed. */
#define FIX_1158_FASTCONV_REVERB_HRTF                   /* Philips: issue 1158: Rendering with FastConv to BINAURAL_ROOM_REVERB uses BRIR convolution instead of HRTF */
#define FIX_1166_TDREND_DIV0                            /* FhG,Eri: issue 1166: potential divide by zero in TD Renderer */
+0 −5
Original line number Diff line number Diff line
@@ -807,13 +807,8 @@ static ivas_error ivas_binaural_hrtf_open(

        *hHrtfFastConv = HrtfFastConv;

#ifdef FIX_RETURN
        return IVAS_ERR_OK;
#endif
    }
#ifndef FIX_RETURN
    return IVAS_ERR_OK;
#endif
}


+0 −5
Original line number Diff line number Diff line
@@ -412,13 +412,8 @@ ivas_error ivas_dirac_dec_binaural_copy_hrtfs(

        *hHrtfParambin = hrtfParambin;

#ifdef FIX_RETURN
        return IVAS_ERR_OK;
#endif
    }
#ifndef FIX_RETURN
    return IVAS_ERR_OK;
#endif
}