Commit 40015a69 authored by vaclav's avatar vaclav
Browse files

remove unused functions, under NONBE_UNIFIED_DECODING_PATHS_FIX

parent c9837bca
Loading
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -3701,13 +3701,14 @@ void ivas_dirac_dec_set_md_map(
    const int16_t nCldfbTs                                      /* i  : number of CLDFB time slots              */
);

#ifndef NONBE_UNIFIED_DECODING_PATHS_FIX
void ivas_dirac_dec(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder structure                                  */
    float *output_f[],                                          /* i/o: synthesized core-coder transport channels/DirAC output  */
    const int16_t nchan_transport,                              /* i  : number of transport channels                            */
    const int16_t num_subframes                                 /* i  : number of subframes to render           */
);

#endif
void ivas_dirac_dec_render(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder handle                     */
    const int16_t nchan_transport,                              /* i  : number of transport channels            */
@@ -3789,11 +3790,12 @@ void ivas_mc_paramupmix_enc_close(
    const int32_t input_Fs                                      /* i  : input sampling rate                             */
);

#ifndef NONBE_UNIFIED_DECODING_PATHS_FIX
void ivas_mc_paramupmix_dec(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder handle                                     */
    float *output_f[]                                           /* i/o: synthesized core-coder transport channels/DirAC output  */
);

#endif
ivas_error ivas_mc_paramupmix_dec_open(
    Decoder_Struct *st_ivas                                     /* i/o: IVAS decoder structure                          */
);
@@ -4153,12 +4155,13 @@ void ivas_spar_config(
    const int16_t sid_format                                    /* i  : IVAS format indicator from SID frame    */
);

#ifndef NONBE_UNIFIED_DECODING_PATHS_FIX
ivas_error ivas_sba_upmixer_renderer(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder struct                     */
    float *output[],                                            /* i/o: transport/output audio channels         */
    const int16_t output_frame                                  /* i  : output frame length                     */
);

#endif
ivas_error ivas_sba_linear_renderer(
    float *output_f[],                                          /* i/o: synthesized core-coder transport channels/DirAC output  */
    const int16_t output_frame,                                 /* i  : output frame length per channel                         */
@@ -5271,12 +5274,13 @@ void ivas_ism_renderer_close(
    ISM_RENDERER_HANDLE *hIsmRendererData                       /* i/o: ISM renderer handle                             */
);

#ifndef NONBE_UNIFIED_DECODING_PATHS
void ivas_ism_render(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder structure                          */
    float *output_f[],                                          /* i/o: core-coder transport channels/object output     */
    const int16_t output_frame                                  /* i  : output frame length per channel                 */
);

#endif
void ivas_ism_render_sf(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder structure                          */
    float *output_f[],                                          /* i/o: core-coder transport channels/object output     */
@@ -5836,12 +5840,13 @@ ivas_error ivas_omasa_ism_metadata_dec(
    int16_t nb_bits_metadata[]                                  /* o  : number of ISM metadata bits             */
);

#ifndef NONBE_UNIFIED_DECODING_PATHS
ivas_error ivas_omasa_dirac_td_binaural(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder structure                  */
    float *output[],                                            /* o  : output synthesis signal                 */
    const int16_t output_frame                                  /* i  : output frame length per channel         */
);

#endif
ivas_error ivas_omasa_dirac_td_binaural_jbm(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder handle                     */
    const uint16_t nSamplesAsked,                               /* i  : number of samples requested             */
+2 −2
Original line number Diff line number Diff line
@@ -1598,7 +1598,7 @@ void ivas_dirac_dec_set_md_map(
    return;
}


#ifndef NONBE_UNIFIED_DECODING_PATHS_FIX
/*-------------------------------------------------------------------------
 * ivas_dirac_dec()
 *
@@ -1677,7 +1677,7 @@ void ivas_dirac_dec(

    return;
}

#endif

/*-------------------------------------------------------------------------
 * ivas_dirac_dec_render()
+2 −2
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ void ivas_ism_renderer_close(
    return;
}


#ifndef NONBE_UNIFIED_DECODING_PATHS
/*-------------------------------------------------------------------------*
 * ivas_ism_render()
 *
@@ -233,7 +233,7 @@ void ivas_ism_render(

    return;
}

#endif

/*-------------------------------------------------------------------------*
 * ivas_ism_render_sf()
+2 −2
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ void ivas_mc_paramupmix_dec_read_BS(
    return;
}


#ifndef NONBE_UNIFIED_DECODING_PATHS_FIX
/*-------------------------------------------------------------------------
 * ivas_mc_paramupmix_dec()
 *
@@ -458,7 +458,7 @@ void ivas_mc_paramupmix_dec(
    pop_wmops();
    return;
}

#endif

/*-------------------------------------------------------------------------
 * ivas_mc_paramupmix_dec_digest_tc()
+2 −2
Original line number Diff line number Diff line
@@ -667,7 +667,7 @@ void ivas_omasa_dirac_rend_jbm(
    return;
}


#ifndef NONBE_UNIFIED_DECODING_PATHS
/*--------------------------------------------------------------------------*
 * ivas_omasa_dirac_td_binaural()
 *
@@ -721,7 +721,7 @@ ivas_error ivas_omasa_dirac_td_binaural(

    return IVAS_ERR_OK;
}

#endif

/*--------------------------------------------------------------------------*
 * ivas_omasa_dirac_td_binaural_render()
Loading