mpegaudiotab.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * mpeg audio layer 2 tables. Most of them come from the mpeg audio
  3. * specification.
  4. *
  5. * Copyright (c) 2000, 2001 Fabrice Bellard
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * mpeg audio layer 2 tables.
  26. * Most of them come from the mpeg audio specification.
  27. */
  28. #ifndef AVCODEC_MPEGAUDIOTAB_H
  29. #define AVCODEC_MPEGAUDIOTAB_H
  30. #include <stdint.h>
  31. #include "mpegaudio.h"
  32. static const int costab32[30] = {
  33. FIX(0.54119610014619701222),
  34. FIX(1.3065629648763763537),
  35. FIX(0.50979557910415917998),
  36. FIX(2.5629154477415054814),
  37. FIX(0.89997622313641556513),
  38. FIX(0.60134488693504528634),
  39. FIX(0.5024192861881556782),
  40. FIX(5.1011486186891552563),
  41. FIX(0.78815462345125020249),
  42. FIX(0.64682178335999007679),
  43. FIX(0.56694403481635768927),
  44. FIX(1.0606776859903470633),
  45. FIX(1.7224470982383341955),
  46. FIX(0.52249861493968885462),
  47. FIX(10.19000812354803287),
  48. FIX(0.674808341455005678),
  49. FIX(1.1694399334328846596),
  50. FIX(0.53104259108978413284),
  51. FIX(2.0577810099534108446),
  52. FIX(0.58293496820613388554),
  53. FIX(0.83934964541552681272),
  54. FIX(0.50547095989754364798),
  55. FIX(3.4076084184687189804),
  56. FIX(0.62250412303566482475),
  57. FIX(0.97256823786196078263),
  58. FIX(0.51544730992262455249),
  59. FIX(1.4841646163141661852),
  60. FIX(0.5531038960344445421),
  61. FIX(0.74453627100229857749),
  62. FIX(0.5006029982351962726),
  63. };
  64. static const int bitinv32[32] = {
  65. 0, 16, 8, 24, 4, 20, 12, 28,
  66. 2, 18, 10, 26, 6, 22, 14, 30,
  67. 1, 17, 9, 25, 5, 21, 13, 29,
  68. 3, 19, 11, 27, 7, 23, 15, 31
  69. };
  70. /* signal to noise ratio of each quantification step (could be
  71. computed from quant_steps[]). The values are dB multiplied by 10
  72. */
  73. static const unsigned short quant_snr[17] = {
  74. 70, 110, 160, 208,
  75. 253, 316, 378, 439,
  76. 499, 559, 620, 680,
  77. 740, 800, 861, 920,
  78. 980
  79. };
  80. /* fixed psycho acoustic model. Values of SNR taken from the 'toolame'
  81. project */
  82. static const float fixed_smr[SBLIMIT] = {
  83. 30, 17, 16, 10, 3, 12, 8, 2.5,
  84. 5, 5, 6, 6, 5, 6, 10, 6,
  85. -4, -10, -21, -30, -42, -55, -68, -75,
  86. -75, -75, -75, -75, -91, -107, -110, -108
  87. };
  88. static const unsigned char nb_scale_factors[4] = { 3, 2, 1, 2 };
  89. #endif /* AVCODEC_MPEGAUDIOTAB_H */