Commit 86819782 authored by vaclav's avatar vaclav
Browse files

address comment -> align ivas_param_mc_dec_digest_tc() parameters and comments with the float main

parent fff4714d
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3907,8 +3907,8 @@ void ivas_param_mc_dec_read_BS(

void ivas_param_mc_dec_digest_tc(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder handle                                 */
    const uint8_t nCldfbSlots,                                  /* i  : number of CLFBS slots in the transport channels     */
    float *transport_channels_f[]                               /* i  : synthesized core-coder transport channels/DirAC output*/
    const uint8_t nCldfbSlots,                                  /* i  : number of CLDFB slots in transport channels         */
    float *p_data_f[]                                           /* i/o: synthesized core-coder transport channels/DirAC output*/
);

#ifdef OBJ_EDITING_API
+4 −4
Original line number Diff line number Diff line
@@ -1332,7 +1332,7 @@ void ivas_param_mc_dec_read_BS(
void ivas_param_mc_dec_digest_tc(
    Decoder_Struct *st_ivas,   /* i/o: IVAS decoder handle                                      */
    const uint8_t nCldfbSlots, /* i  : number of CLDFB slots in transport channels              */
    float *transport_channels_f[] /* i  : synthesized core-coder transport channels/DirAC output    */
    float *p_data_f[]          /* i/o: synthesized core-coder transport channels/DirAC output   */
)
{
    PARAM_MC_DEC_HANDLE hParamMC;
@@ -1442,7 +1442,7 @@ void ivas_param_mc_dec_digest_tc(
                    /* CLDFB Analysis*/
                    for ( ch = 0; ch < nchan_transport; ch++ )
                    {
                        cldfbAnalysis_ts( &( transport_channels_f[ch][hParamMC->num_freq_bands * slot_idx] ), RealBuffer, ImagBuffer, hParamMC->num_freq_bands, st_ivas->cldfbAnaDec[ch] );
                        cldfbAnalysis_ts( &( p_data_f[ch][hParamMC->num_freq_bands * slot_idx] ), RealBuffer, ImagBuffer, hParamMC->num_freq_bands, st_ivas->cldfbAnaDec[ch] );

                        mvr2r( RealBuffer, &hParamMC->Cldfb_RealBuffer_tc[slot_idx * hParamMC->num_freq_bands * nchan_transport + ch * hParamMC->num_freq_bands], hParamMC->num_freq_bands );
                        mvr2r( ImagBuffer, &hParamMC->Cldfb_ImagBuffer_tc[slot_idx * hParamMC->num_freq_bands * nchan_transport + ch * hParamMC->num_freq_bands], hParamMC->num_freq_bands );