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.
 
 
 
 
 

56 lines
2.4 KiB

  1. /*
  2. * Atpdec
  3. * Copyright (c) 2003 by Thierry Leconte (F4DWV)
  4. *
  5. * $Id$
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Library General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. *
  21. */
  22. #define IQFilterLen 32
  23. const float iqfilter[IQFilterLen] = {
  24. -0.0205361, -0.0219524, -0.0235785, -0.0254648,
  25. -0.0276791, -0.0303152, -0.0335063, -0.0374482,
  26. -0.0424413, -0.0489708, -0.0578745, -0.0707355,
  27. -0.0909457, -0.127324, -0.212207, -0.63662,
  28. 0.63662, 0.212207, 0.127324, 0.0909457,
  29. 0.0707355, 0.0578745, 0.0489708, 0.0424413,
  30. 0.0374482, 0.0335063, 0.0303152, 0.0276791,
  31. 0.0254648, 0.0235785, 0.0219524, 0.0205361
  32. };
  33. #define SyncFilterLen 32
  34. const float Sync[SyncFilterLen]={
  35. -14,-14,-14,
  36. 18,18,-14,-14,18,18,-14,-14,18,18,-14,-14,
  37. 18,18,-14,-14,18,18,-14,-14,18,18,-14,-14,
  38. 18,18,-14,-14,-14
  39. };
  40. #define RSFilterLen 75
  41. const float rsfilter[RSFilterLen] = {
  42. 0.000684467, 0.000686301, 0.000680827, 0.000657135, 0.000598639, 0.000484572, 0.000292259, -4.07622e-19,
  43. -0.000409636, -0.000946387, -0.00160904, -0.00238265, -0.00323652, -0.00412324, -0.00497894, -0.00572484,
  44. -0.00627025, -0.00651673, -0.00636341, -0.00571307, -0.00447871, -0.00259011, 1.72476e-18, 0.00331064,
  45. 0.00732849, 0.0120054, 0.017258, 0.0229688, 0.0289897, 0.0351475, 0.0412507, 0.0470982,
  46. 0.052488, 0.0572273, 0.0611415, 0.0640834, 0.0659403, 0.0666398, 0.0661536, 0.0644993,
  47. 0.061739, 0.0579765, 0.0533519, 0.0480347, 0.0422149, 0.0360944, 0.0298768, 0.023758,
  48. 0.0179179, 0.0125126, 0.00766851, 0.00347853, 1.81998e-18, -0.00274526, -0.00476897, -0.00611273,
  49. -0.00684295, -0.00704483, -0.00681579, -0.00625878, -0.00547594, -0.00456294, -0.00360441, -0.00267047,
  50. -0.00181474, -0.00107366, -0.000467084, -4.66468e-19, 0.000334865, 0.000553877, 0.000679047, 0.000734606,
  51. 0.000743914, 0.000726905, 0.00069827 };