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.

89 lines
2.6KB

  1. /*
  2. * Various fixed-point math operations
  3. *
  4. * Copyright (c) 2008 Vladimir Voroshilov
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include <inttypes.h>
  23. #include <limits.h>
  24. #include <assert.h>
  25. #include "avcodec.h"
  26. #include "celp_math.h"
  27. #include "libavutil/common.h"
  28. static const uint16_t exp2a[]=
  29. {
  30. 0, 1435, 2901, 4400, 5931, 7496, 9096, 10730,
  31. 12400, 14106, 15850, 17632, 19454, 21315, 23216, 25160,
  32. 27146, 29175, 31249, 33368, 35534, 37747, 40009, 42320,
  33. 44682, 47095, 49562, 52082, 54657, 57289, 59979, 62727,
  34. };
  35. static const uint16_t exp2b[]=
  36. {
  37. 3, 712, 1424, 2134, 2845, 3557, 4270, 4982,
  38. 5696, 6409, 7124, 7839, 8554, 9270, 9986, 10704,
  39. 11421, 12138, 12857, 13576, 14295, 15014, 15734, 16455,
  40. 17176, 17898, 18620, 19343, 20066, 20790, 21514, 22238,
  41. };
  42. int ff_exp2(uint16_t power)
  43. {
  44. unsigned int result= exp2a[power>>10] + 0x10000;
  45. assert(power <= 0x7fff);
  46. result= (result<<3) + ((result*exp2b[(power>>5)&31])>>17);
  47. return result + ((result*(power&31)*89)>>22);
  48. }
  49. /**
  50. * Table used to compute log2(x)
  51. *
  52. * tab_log2[i] = (1<<15) * log2(1 + i/32), i=0..32
  53. */
  54. static const uint16_t tab_log2[33] =
  55. {
  56. 4, 1459, 2870, 4240, 5572, 6867, 8127, 9355,
  57. 10552, 11719, 12858, 13971, 15057, 16120, 17158, 18175,
  58. 19170, 20145, 21100, 22036, 22954, 23854, 24738, 25605,
  59. 26457, 27294, 28116, 28924, 29719, 30500, 31269, 32025, 32769,
  60. };
  61. int ff_log2_q15(uint32_t value)
  62. {
  63. uint8_t power_int;
  64. uint8_t frac_x0;
  65. uint16_t frac_dx;
  66. // Stripping zeros from beginning
  67. power_int = av_log2(value);
  68. value <<= (31 - power_int);
  69. // b31 is always non-zero now
  70. frac_x0 = (value & 0x7c000000) >> 26; // b26-b31 and [32..63] -> [0..31]
  71. frac_dx = (value & 0x03fff800) >> 11;
  72. value = tab_log2[frac_x0];
  73. value += (frac_dx * (tab_log2[frac_x0+1] - tab_log2[frac_x0])) >> 15;
  74. return (power_int << 15) + value;
  75. }