Commit 6a73f327 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix compiler warning

parent f60477a4
Loading
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -3599,9 +3599,10 @@ void ivas_dirac_dec_output_synthesis_process_slot(
    const VBAP_HANDLE hVBAPdata,                                /* i  : VBAP structure                              */
    const IVAS_OUTPUT_SETUP hOutSetup,                          /* i  : output setup structure                      */
	const int16_t nchan_transport,                              /* i  : number of transport channels                */
#ifndef HODIRAC
	const int16_t index_slot 
#endif
#ifdef HODIRAC
    ,
    const int16_t hodirac
#endif
);
+6 −4
Original line number Diff line number Diff line
@@ -2965,9 +2965,10 @@ void ivas_dirac_dec(
                                                              st_ivas->hVBAPdata,
                                                              hDirAC->hOutSetup,
                                                              nchan_transport,
#ifndef HODIRAC
                                                              index_slot
#endif
#ifdef HODIRAC
                                                              ,
                                                                      st_ivas->sba_analysis_order > 1
#endif

@@ -2982,9 +2983,10 @@ void ivas_dirac_dec(
                                                              st_ivas->hVBAPdata,
                                                              hDirAC->hOutSetup,
                                                              nchan_transport,
#ifndef HODIRAC
                                                              index_slot
#endif
#ifdef HODIRAC
                                                              ,
                                                                      st_ivas->sba_analysis_order > 1
#endif
                );
+2 −1
Original line number Diff line number Diff line
@@ -570,9 +570,10 @@ void ivas_dirac_dec_output_synthesis_process_slot(
    const VBAP_HANDLE hVBAPdata,       /* i  : VBAP structure              */
    const IVAS_OUTPUT_SETUP hOutSetup, /* i  : output setup structure      */
    const int16_t nchan_transport,     /* i  : number of transport channels*/
#ifndef HODIRAC
    const int16_t index_slot
#endif
#ifdef HODIRAC
    ,
    const int16_t hodirac
#endif
)