dsp_biquad.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * SpanDSP - a series of DSP components for telephony
  3. *
  4. * biquad.h - General telephony bi-quad section routines (currently this just
  5. * handles canonic/type 2 form)
  6. *
  7. * Written by Steve Underwood <steveu@coppice.org>
  8. *
  9. * Copyright (C) 2001 Steve Underwood
  10. *
  11. * All rights reserved.
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26. *
  27. */
  28. struct biquad2_state {
  29. int32_t gain;
  30. int32_t a1;
  31. int32_t a2;
  32. int32_t b1;
  33. int32_t b2;
  34. int32_t z1;
  35. int32_t z2;
  36. };
  37. static inline void biquad2_init(struct biquad2_state *bq,
  38. int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2)
  39. {
  40. bq->gain = gain;
  41. bq->a1 = a1;
  42. bq->a2 = a2;
  43. bq->b1 = b1;
  44. bq->b2 = b2;
  45. bq->z1 = 0;
  46. bq->z2 = 0;
  47. }
  48. static inline int16_t biquad2(struct biquad2_state *bq, int16_t sample)
  49. {
  50. int32_t y;
  51. int32_t z0;
  52. z0 = sample * bq->gain + bq->z1 * bq->a1 + bq->z2 * bq->a2;
  53. y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2;
  54. bq->z2 = bq->z1;
  55. bq->z1 = z0 >> 15;
  56. y >>= 15;
  57. return y;
  58. }