Commit 0f8485a3 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] build when turning off FIX_CREND_SIMPLIFY_CODE

parent df94c011
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -188,6 +188,7 @@ void ivas_omasa_data_close(
ivas_error ivas_omasa_dec_config(
    Decoder_Struct *st_ivas /* i/o: IVAS decoder structure */
#ifndef FIX_HRTF_LOAD
    ,
    uint16_t *nSamplesRendered,          /* o  : number of samples flushed from the previous frame (JBM) */
    const PCM_RESOLUTION pcm_resolution, /* i  : type for the decoded PCM resolution */
    void *data                           /* o  : output synthesis signal     */
+4 −2
Original line number Diff line number Diff line
@@ -2987,12 +2987,14 @@ ivas_error IVAS_DEC_VoIP_GetSamples(
    uint16_t nSamplesPerChannel, /* i  : number of samples per channel requested to be written to output buffer                  */
    const IVAS_DEC_PCM_TYPE pcmType,
    void *pcmBuf,
    const uint32_t systemTimestamp_ms, /* i  : current system timestamp                    */
    const uint32_t systemTimestamp_ms /* i  : current system timestamp                    */
#ifdef SUPPORT_JBM_TRACEFILE
    ,
    JbmTraceFileWriterFn jbmWriterFn,
    void *jbmWriter,
    void *jbmWriter
#endif
#ifdef FIX_CREND_SIMPLIFY_CODE
    ,
    bool *bitstreamReadDone,   /* o  : flag indicating that bitstream was read                                 */
    uint16_t *nSamplesRendered /* o  : number of samples rendered                                              */
#endif
+4 −3
Original line number Diff line number Diff line
@@ -283,12 +283,13 @@ ivas_error IVAS_DEC_VoIP_GetSamples(
    uint16_t nSamplesPerChannel,                /* i  : number of samples per channel requested to be written to output buffer  */
    const IVAS_DEC_PCM_TYPE pcmType,
    void *pcmBuf,
    const uint32_t systemTimestamp_ms,          /* i  : current system timestamp                                                */
    const uint32_t systemTimestamp_ms          /* i  : current system timestamp                                                */
#ifdef SUPPORT_JBM_TRACEFILE
    JbmTraceFileWriterFn jbmWriterFn,
    void* jbmWriter,
    , JbmTraceFileWriterFn jbmWriterFn,
    void* jbmWriter
#endif
#ifdef FIX_CREND_SIMPLIFY_CODE
   ,
   bool *bitstreamReadDone,                     /* o  : flag indicating that bitstream was read                                 */
   uint16_t *nSamplesRendered                   /* o  : number of samples rendered                                              */
#endif
+1 −1

File changed.

Contains only whitespace changes.