Commit b769624a authored by vaclav's avatar vaclav
Browse files

another round of formatting

parent 8dc8cdbc
Loading
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -5402,7 +5402,7 @@ void ivas_binRenderer(
#endif
    COMBINED_ORIENTATION_HANDLE hCombinedOrientationData,       /* i  : combined head and external orientation handle           */
    int16_t subframe_idx,                                       /* i  : subframe index                                          */
    const int16_t numTimeSlots,                                 /* i: : number of time slots to process                         */
    const int16_t numTimeSlots,                                 /* i  : number of time slots to process                         */
#ifdef SPLIT_REND_WITH_HEAD_ROT
    float Cldfb_RealBuffer_Binaural[][BINAURAL_CHANNELS][MAX_PARAM_SPATIAL_SUBFRAMES][CLDFB_NO_CHANNELS_MAX], /* o  : Rotated Binaural signals */
    float Cldfb_ImagBuffer_Binaural[][BINAURAL_CHANNELS][MAX_PARAM_SPATIAL_SUBFRAMES][CLDFB_NO_CHANNELS_MAX], /* o  : Rotated Binaural signals */
+5 −4
Original line number Diff line number Diff line
@@ -211,6 +211,7 @@ void ivas_transient_det_close(
 *
 * Transient detection process call
 *-----------------------------------------------------------------------------------------*/

void ivas_transient_det_process(
    ivas_trans_det_state_t *hTranDet, /* i/o: SPAR TD handle            */
    float *pIn_pcm,                   /* i  : input audio channels      */
+12 −10
Original line number Diff line number Diff line
@@ -579,6 +579,7 @@ static ivas_error ivas_alloc_pppMem(
    return IVAS_ERR_OK;
}


/*-------------------------------------------------------------------------*
 * ivas_allocate_binaural_hrtf()
 *
@@ -619,6 +620,7 @@ ivas_error ivas_allocate_binaural_hrtf(
            }
        }
    }

    if ( input_config == AUDIO_CONFIG_HOA2 || bin_input_config == BINAURAL_INPUT_AUDIO_CONFIG_HOA2 )
    {
        if ( ( HrtfFastConv->leftHRIRReal_HOA2 != NULL ) && ( HrtfFastConv->leftHRIRImag_HOA2 != NULL ) && ( HrtfFastConv->rightHRIRReal_HOA2 != NULL ) && ( HrtfFastConv->rightHRIRImag_HOA2 != NULL ) )
+16 −4
Original line number Diff line number Diff line
@@ -484,6 +484,12 @@ void ivas_mc_paramupmix_dec(
}


/*-------------------------------------------------------------------------
 * ivas_mc_paramupmix_dec_digest_tc()
 *
 *
 *------------------------------------------------------------------------*/

void ivas_mc_paramupmix_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  */
@@ -507,6 +513,12 @@ void ivas_mc_paramupmix_dec_digest_tc(
}


/*-------------------------------------------------------------------------
 * ivas_mc_paramupmix_dec_render()
 *
 * 
 *------------------------------------------------------------------------*/

void ivas_mc_paramupmix_dec_render(
    Decoder_Struct *st_ivas,      /* i/o: IVAS decoder handle                       */
    const uint16_t nSamplesAsked, /* i  : number of CLDFB slots requested           */
+8 −9
Original line number Diff line number Diff line
@@ -597,7 +597,6 @@ static void ivas_sba_dirac_stereo_upmix_hb(
        }
    }


    return;
}

Loading