Commit 6e4782da authored by emerit's avatar emerit
Browse files

fix clang fromet error and windows build

parent 37f862e5
Loading
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -432,18 +432,18 @@ static ivas_error DefaultBSplineModel(
    ivas_error error;
    float azimSegSamples;
#ifdef FIX_1123_TDREN_16BIT_ROM
    float q_scale;
    float q_scale = 0;
    int32_t size_rom_table;
    float q_scale_a;
    float q_scale_e;
    const int16_t *alphaL_ptr;
    const int16_t *alphaR_ptr;
    float q_scale_a = 0;
    float q_scale_e = 0;
    const int16_t *alphaL_ptr = NULL;
    const int16_t *alphaR_ptr = NULL;
#ifdef FIX_1123_TDREN_32BIT_ROM_EL_ER
    const int32_t *elL_ptr;
    const int32_t *elR_ptr;
    const int32_t *elL_ptr = NULL;
    const int32_t *elR_ptr = NULL;
#else
    const int16_t *elL_ptr;
    const int16_t *elR_ptr;
    const int16_t *elL_ptr = NULL;
    const int16_t *elR_ptr = NULL;
#endif
#endif

+5 −5

File changed.

Contains only whitespace changes.