returnIVAS_ERROR(IVAS_ERR_INTERNAL_FATAL,"Indice ID = %d with value %d exceeds the range of %d bits (frame %d) !\n",id,value,nb_bits,frame);
}
#ifndef IND_LIST_DYN
#if 0
/* mul, 2020-11-19: to be de-activated until proper solution found */
if ( nb_bits < 1 )
{
return IVAS_ERROR( IVAS_ERR_INTERNAL_FATAL, " Trying to push indice ID = %d with value %d that has %d bits (frame %d) !\n", id, value, nb_bits, frame );
}
else
#endif
#endif
if(nb_bits>16)
{
returnIVAS_ERROR(IVAS_ERR_INTERNAL_FATAL,"Indice ID = %d with value %d is trying to allocate %d bits which exceeds 16 bits (frame %d) !\n",id,value,nb_bits,frame);
}
#ifndef IND_LIST_DYN
if(id>=MAX_NUM_INDICES)
{
returnIVAS_ERROR(IVAS_ERR_INTERNAL_FATAL,"Indice ID = %d exceeds the total number of indices: %d (frame %d) !\n",id,MAX_NUM_INDICES,frame);