Commit 6c6d7d1c authored by vaclav's avatar vaclav Committed by Dominik Weckbecker
Browse files

fix diff

parent 2db18590
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -98,7 +98,11 @@ struct IVAS_DEC

#ifdef FIX_HRTF_LOAD
    uint16_t nSamplesFlushed;
#ifdef FIX_HRTF_LOAD_API
    int16_t *flushbuffer;
#else
    int16_t flushbuffer[20 * 960 / 4]; // temp. hack
#endif
    IVAS_DEC_PCM_TYPE pcmType;
#ifdef OBJ_EDITING_API
    bool hasEditableParameters;
@@ -191,7 +195,7 @@ ivas_error IVAS_DEC_Open(
#ifdef OBJ_EDITING_API
    hIvasDec->flushbuffer = NULL;
#else
    int16_t flushbuffer[20 * 960 / 4]; // temp. hack
                                       // hIvasDec->flushbuffer = NULL;
#endif
    hIvasDec->pcmType = IVAS_DEC_PCM_INVALID;
#ifndef FIX_HRTF_LOAD_API