Skip to content
Snippets Groups Projects
Commit d6cad7aa authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Disabling some unused SILK functions from the float build

parent 8fcfe02b
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,10 @@ opus_int silk_LPC_inverse_pred_gain( /* O Returns 1 if unstable
return LPC_inverse_pred_gain_QA( invGain_Q30, Atmp_QA, order );
}
#ifdef FIXED_POINT
/* For input in Q24 domain */
/* This function is only used by the fixed-point build */
opus_int silk_LPC_inverse_pred_gain_Q24( /* O Returns 1 if unstable, otherwise 0 */
opus_int32 *invGain_Q30, /* O Inverse prediction gain, Q30 energy domain */
const opus_int32 *A_Q24, /* I Prediction coefficients, Q24 [order] */
......@@ -152,4 +155,4 @@ opus_int silk_LPC_inverse_pred_gain_Q24( /* O Returns 1 if unstabl
return LPC_inverse_pred_gain_QA( invGain_Q30, Atmp_QA, order );
}
#endif
......@@ -83,6 +83,8 @@ void silk_insertion_sort_increasing(
}
}
#ifdef FIXED_POINT
/* This function is only used by the fixed-point build */
void silk_insertion_sort_decreasing_int16(
opus_int16 *a, /* I/O Unsorted / Sorted vector */
opus_int *idx, /* O Index vector for the sorted elements */
......@@ -128,6 +130,7 @@ void silk_insertion_sort_decreasing_int16(
}
}
}
#endif
void silk_insertion_sort_increasing_all_values_int16(
opus_int16 *a, /* I/O Unsorted / Sorted vector */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment