You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.2KB

  1. /*
  2. * Copyright (c) 2015 Peter Meerwald <pmeerw@pmeerw.net>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "g722dsp.h"
  21. #include "mathops.h"
  22. /*
  23. * quadrature mirror filter (QMF) coefficients (ITU-T G.722 Table 11) inlined
  24. * in code below: 3, -11, 12, 32, -210, 951, 3876, -805, 362, -156, 53, -11
  25. */
  26. static void g722_apply_qmf(const int16_t *prev_samples, int xout[2])
  27. {
  28. xout[1] = MUL16(*prev_samples++, 3);
  29. xout[0] = MUL16(*prev_samples++, -11);
  30. MAC16(xout[1], *prev_samples++, -11);
  31. MAC16(xout[0], *prev_samples++, 53);
  32. MAC16(xout[1], *prev_samples++, 12);
  33. MAC16(xout[0], *prev_samples++, -156);
  34. MAC16(xout[1], *prev_samples++, 32);
  35. MAC16(xout[0], *prev_samples++, 362);
  36. MAC16(xout[1], *prev_samples++, -210);
  37. MAC16(xout[0], *prev_samples++, -805);
  38. MAC16(xout[1], *prev_samples++, 951);
  39. MAC16(xout[0], *prev_samples++, 3876);
  40. MAC16(xout[1], *prev_samples++, 3876);
  41. MAC16(xout[0], *prev_samples++, 951);
  42. MAC16(xout[1], *prev_samples++, -805);
  43. MAC16(xout[0], *prev_samples++, -210);
  44. MAC16(xout[1], *prev_samples++, 362);
  45. MAC16(xout[0], *prev_samples++, 32);
  46. MAC16(xout[1], *prev_samples++, -156);
  47. MAC16(xout[0], *prev_samples++, 12);
  48. MAC16(xout[1], *prev_samples++, 53);
  49. MAC16(xout[0], *prev_samples++, -11);
  50. MAC16(xout[1], *prev_samples++, -11);
  51. MAC16(xout[0], *prev_samples++, 3);
  52. }
  53. av_cold void ff_g722dsp_init(G722DSPContext *c)
  54. {
  55. c->apply_qmf = g722_apply_qmf;
  56. if (ARCH_ARM)
  57. ff_g722dsp_init_arm(c);
  58. }