Commit 43ba5d8f authored by vaclav's avatar vaclav
Browse files

formatting, comments

parent 36ee1af7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1019,6 +1019,7 @@ enum
#define SIZE_BK22_36b                       128
#define SIZE_BK23_36b                       64

/* Gain quantizer constants */
#define NB_QUA_GAIN5B                       32                      /* Number of quantization level        */
#define NB_QUA_GAIN6B                       64                      /* Number of quantization level        */
#define NB_QUA_GAIN7B                       128                     /* Number of quantization level        */
+2 −4
Original line number Diff line number Diff line
@@ -3970,8 +3970,7 @@ void ivas_get_spar_md_from_dirac(
ivas_error ivas_spar_md_dec_open(
    ivas_spar_md_dec_state_t **hMdDec_out,                      /* i/o: SPAR MD decoder handle                  */
    const DECODER_CONFIG_HANDLE hDecoderConfig,                 /* i  : configuration structure                 */
    const int16_t num_channels                                  /* i  : number of internal channels             */
    ,
    const int16_t num_channels,                                 /* i  : number of internal channels             */
	const int16_t sba_order                                     /* i  : SBA order                               */
);

@@ -4074,8 +4073,7 @@ void ivas_cov_smooth_process(
    float *cov_real[IVAS_SPAR_MAX_CH][IVAS_SPAR_MAX_CH],
    ivas_filterbank_t *pFb,                                     /* i/o: FB handle                               */
    const int16_t start_band,
    const int16_t end_band
    ,
    const int16_t end_band,
    const int16_t num_ch,
    const int16_t transient_det
);
+1 −2
Original line number Diff line number Diff line
@@ -56,8 +56,7 @@ void mode_switch_decoder_LPD(
    const int32_t total_brate,      /* i  : total bitrate                       */
    const int32_t last_total_brate, /* i  : last frame total bitrate            */
    const int16_t frame_size_index, /* i  : index determining the frame size    */
    const int16_t MCT_flag          /* i  : hMCT handle allocated (1) or not (0)*/
    ,
    const int16_t MCT_flag,         /* i  : hMCT handle allocated (1) or not (0)*/
    const int16_t last_element_mode /* i  : last element mode                   */
)
{
+1 −2
Original line number Diff line number Diff line
@@ -89,8 +89,7 @@ ivas_error ivas_spar_dec_open(
    }

    /* MD handle */
    if ( ( error = ivas_spar_md_dec_open( &hSpar->hMdDec, st_ivas->hDecoderConfig, num_channels_internal,
                                          sba_order_internal ) ) != IVAS_ERR_OK )
    if ( ( error = ivas_spar_md_dec_open( &hSpar->hMdDec, st_ivas->hDecoderConfig, num_channels_internal, sba_order_internal ) ) != IVAS_ERR_OK )
    {
        return error;
    }
+4 −5
Original line number Diff line number Diff line
@@ -249,8 +249,7 @@ static ivas_error ivas_spar_md_dec_matrix_open(
ivas_error ivas_spar_md_dec_open(
    ivas_spar_md_dec_state_t **hMdDec_out,      /* i/o: SPAR MD decoder handle      */
    const DECODER_CONFIG_HANDLE hDecoderConfig, /* i  : configuration structure     */
    const int16_t num_channels                  /* i  : number of internal channels  */
    ,
    const int16_t num_channels,                 /* i  : number of internal channels */
    const int16_t sba_order                     /* i  : SBA order                   */
)
{
Loading