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

Adds note on monic filter

parent 28b1d248
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,9 @@ POSSIBILITY OF SUCH DAMAGE.
/* Compute gain to make warped filter coefficients have a zero mean log frequency response on a */
/* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */
/* Note: A monic filter is one with the first coefficient equal to 1.0. In Silk
we omit the first coefficient in an array of coefficients, for monic filters.
*/
static inline opus_int32 warped_gain( /* gain in Q16*/
const opus_int32 *coefs_Q24,
opus_int lambda_Q16,
......
......@@ -34,6 +34,9 @@ POSSIBILITY OF SUCH DAMAGE.
/* Compute gain to make warped filter coefficients have a zero mean log frequency response on a */
/* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */
/* Note: A monic filter is one with the first coefficient equal to 1.0. In Silk
we omit the first coefficient in an array of coefficients, for monic filters.
*/
static inline silk_float warped_gain(
const silk_float *coefs,
silk_float lambda,
......
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