Commit 8b1b9403 authored by vaclav's avatar vaclav
Browse files

remove *FOA* from comments where not relevant

parent 82dd05d9
Loading
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -3847,7 +3847,7 @@ void ivas_spar_dec_upmixer(
    const int16_t output_frame                                  /* i  : output frame length                     */
);

/* FOA MD module */
/* MD module */
ivas_error ivas_spar_md_enc_open(
    ivas_spar_md_enc_state_t **hMdEnc,                          /* i/o: SPAR MD encoder handle                  */
    const ENCODER_CONFIG_HANDLE hEncoderConfig                  /* i  : configuration structure                 */
@@ -3932,7 +3932,7 @@ void ivas_spar_md_dec_close(
);

void ivas_spar_get_parameters(
    SPAR_DEC_HANDLE hSpar,                                      /* i/o: SPAR FOA decoder handle */
    SPAR_DEC_HANDLE hSpar,                                      /* i/o: SPAR decoder handle                     */
    const DECODER_CONFIG_HANDLE hDecoderConfig,                 /* i  : configuration structure                 */
    const int16_t ts,                                           /* i  : time slot index                         */
    const int16_t num_ch_out,                                   /* i  : number of channels out                  */
+3 −3
Original line number Diff line number Diff line
@@ -719,7 +719,7 @@ static void ivas_spar_dec_MD(
 *-------------------------------------------------------------------*/

static float ivas_spar_get_cldfb_slot_gain(
    SPAR_DEC_HANDLE hSpar,                      /* i/o: SPAR FOA decoder handle */
    SPAR_DEC_HANDLE hSpar,                      /* i/o: SPAR decoder handle     */
    const DECODER_CONFIG_HANDLE hDecoderConfig, /* i  : configuration structure */
    const int16_t time_slot_idx,
    int16_t *time_slot_idx0,
@@ -777,7 +777,7 @@ static float ivas_spar_get_cldfb_slot_gain(
 *-------------------------------------------------------------------*/

void ivas_spar_get_parameters(
    SPAR_DEC_HANDLE hSpar,                      /* i/o: SPAR FOA decoder handle */
    SPAR_DEC_HANDLE hSpar,                      /* i/o: SPAR decoder handle     */
    const DECODER_CONFIG_HANDLE hDecoderConfig, /* i  : configuration structure */
    const int16_t ts,
    const int16_t num_ch_out,
@@ -834,7 +834,7 @@ void ivas_spar_get_parameters(
 *-------------------------------------------------------------------*/

static void ivas_spar_get_skip_mat(
    SPAR_DEC_HANDLE hSpar, /* i/o: SPAR FOA decoder handle */
    SPAR_DEC_HANDLE hSpar, /* i/o: SPAR decoder handle */
    const int16_t num_ch_out,
    const int16_t num_ch_in,
    const int16_t num_spar_bands,
+1 −1
Original line number Diff line number Diff line
@@ -603,7 +603,7 @@ static ivas_error ivas_spar_set_dec_config(
/*-----------------------------------------------------------------------------------------*
 * Function ivas_spar_foa_md_dec_process()
 *
 * SPAR FOA Meta Data decoder process
 * SPAR Meta Data decoder process
 *-----------------------------------------------------------------------------------------*/

void ivas_spar_md_dec_process(
+2 −2
Original line number Diff line number Diff line
@@ -780,7 +780,7 @@ typedef struct ivas_param_mc_dec_data_structure
 * SPAR decoder structures
 *------------------------------------------------------------------------------------------*/

/* SPAR FOA MD structure */
/* SPAR MD structure */
typedef struct ivas_spar_dec_matrices_t
{
    float ***C_re;
@@ -865,7 +865,6 @@ typedef struct

} PCA_DEC_STATE;

/* SPAR FOA structures */
/* main SPAR decoder structure */
typedef struct ivas_spar_dec_lib_t
{
@@ -879,6 +878,7 @@ typedef struct ivas_spar_dec_lib_t
    int16_t enc_param_start_band;
    int32_t core_nominal_brate; /* Nominal bitrate for core coding  */
    int32_t i_subframe;

} SPAR_DEC_DATA, *SPAR_DEC_HANDLE;


+1 −1
Original line number Diff line number Diff line
@@ -475,7 +475,7 @@ void ivas_agc_enc_process(
    if ( ivas_agc_writeBits( agcOut, pIn_buf, pState ) )
    {
        /* TODO: return error once error codes are harmonized */
        IVAS_ERROR( IVAS_ERR_INTERNAL_FATAL, "SPAR FOA ENC AGC Failed to open agcOut\n " );
        IVAS_ERROR( IVAS_ERR_INTERNAL_FATAL, "SPAR ENC AGC Failed to open agcOut\n " );
    }
#endif

Loading