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.

90 lines
2.8KB

  1. /*
  2. * Header file for hardcoded mpegaudiodec tables
  3. *
  4. * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_MPEGAUDIO_TABLEGEN_H
  23. #define AVCODEC_MPEGAUDIO_TABLEGEN_H
  24. #include <stdint.h>
  25. #include <math.h>
  26. #include "libavutil/attributes.h"
  27. #if CONFIG_HARDCODED_TABLES
  28. #define mpegaudio_tableinit()
  29. #include "libavcodec/mpegaudio_tables.h"
  30. #else
  31. #if defined(BUILD_TABLES) || !USE_FLOATS
  32. #define FIXED_TABLE
  33. static uint32_t exp_table_fixed[512];
  34. static uint32_t expval_table_fixed[512][16];
  35. #endif
  36. #if defined(BUILD_TABLES) || USE_FLOATS
  37. #define FLOAT_TABLE
  38. static float exp_table_float[512];
  39. static float expval_table_float[512][16];
  40. #endif
  41. #define IMDCT_SCALAR 1.759
  42. static av_cold void mpegaudio_tableinit(void)
  43. {
  44. int i, value, exponent;
  45. static const double exp2_lut[4] = {
  46. 1.00000000000000000000, /* 2 ^ (0 * 0.25) */
  47. 1.18920711500272106672, /* 2 ^ (1 * 0.25) */
  48. M_SQRT2 , /* 2 ^ (2 * 0.25) */
  49. 1.68179283050742908606, /* 2 ^ (3 * 0.25) */
  50. };
  51. double pow43_lut[16];
  52. double exp2_base = 2.11758236813575084767080625169910490512847900390625e-22; // 2^(-72)
  53. double exp2_val;
  54. for (i = 0; i < 16; ++i)
  55. pow43_lut[i] = i * cbrt(i);
  56. for (exponent = 0; exponent < 512; exponent++) {
  57. if (exponent && (exponent & 3) == 0)
  58. exp2_base *= 2;
  59. exp2_val = exp2_base * exp2_lut[exponent & 3] / IMDCT_SCALAR;
  60. for (value = 0; value < 16; value++) {
  61. double f = pow43_lut[value] * exp2_val;
  62. #ifdef FIXED_TABLE
  63. expval_table_fixed[exponent][value] = (f < 0xFFFFFFFF ? llrint(f) : 0xFFFFFFFF);
  64. #endif
  65. #ifdef FLOAT_TABLE
  66. expval_table_float[exponent][value] = f;
  67. #endif
  68. }
  69. #ifdef FIXED_TABLE
  70. exp_table_fixed[exponent] = expval_table_fixed[exponent][1];
  71. #endif
  72. #ifdef FLOAT_TABLE
  73. exp_table_float[exponent] = expval_table_float[exponent][1];
  74. #endif
  75. }
  76. }
  77. #undef FLOAT_TABLE
  78. #undef FIXED_TABLE
  79. #endif /* CONFIG_HARDCODED_TABLES */
  80. #endif /* AVCODEC_MPEGAUDIO_TABLEGEN_H */