Commit 2d511518 authored by malenov's avatar malenov
Browse files

increasiing maximum number of indices in MASA modes

parent 970d9ef6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -479,11 +479,11 @@ int16_t get_max_num_indices_metadata( /* o : maximum number of indices */
    {
        if ( ivas_total_brate < IVAS_32k )
        {
            return 80;
            return 90;
        }
        else if ( ivas_total_brate < IVAS_48k )
        {
            return 110;
            return 130;
        }
        else if ( ivas_total_brate < IVAS_192k )
        {
@@ -598,7 +598,7 @@ ivas_error push_indice(
    /* shift indices, if the new id is to be written somewhere inside the list */
    if ( i < hBstr->nb_ind_tot )
    {
#ifdef DEBUG_IND_LIST
#ifdef DEBUG_IND_LIST_OUT_OF_ORDER
        printf( "Indice ID=%d is written before the last indice with ID=%d!\n", id, hBstr->ind_list[hBstr->nb_ind_tot - 1].id );
#endif
        for ( j = hBstr->nb_ind_tot; j > i; j-- )