acelp_vectors.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * adaptive and fixed codebook vector operations for ACELP-based codecs
  3. *
  4. * Copyright (c) 2008 Vladimir Voroshilov
  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_ACELP_VECTORS_H
  23. #define AVCODEC_ACELP_VECTORS_H
  24. #include <stdint.h>
  25. /**
  26. * Track|Pulse| Positions
  27. * -------------------------------------------------------------------------
  28. * 1 | 0 | 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75
  29. * -------------------------------------------------------------------------
  30. * 2 | 1 | 1, 6, 11, 16, 21, 26, 31, 36, 41, 46, 51, 56, 61, 66, 71, 76
  31. * -------------------------------------------------------------------------
  32. * 3 | 2 | 2, 7, 12, 17, 22, 27, 32, 37, 42, 47, 52, 57, 62, 67, 72, 77
  33. * -------------------------------------------------------------------------
  34. *
  35. * Table contains only first the pulse indexes.
  36. *
  37. * Used in G.729 @8k, G.729 @4.4k, AMR @7.95k, AMR @7.40k
  38. */
  39. extern const uint8_t ff_fc_4pulses_8bits_tracks_13[16];
  40. /**
  41. * Track|Pulse| Positions
  42. * -------------------------------------------------------------------------
  43. * 4 | 3 | 3, 8, 13, 18, 23, 28, 33, 38, 43, 48, 53, 58, 63, 68, 73, 78
  44. * | | 4, 9, 14, 19, 24, 29, 34, 39, 44, 49, 54, 59, 64, 69, 74, 79
  45. * -------------------------------------------------------------------------
  46. *
  47. * @remark Track in the table should be read top-to-bottom, left-to-right.
  48. *
  49. * Used in G.729 @8k, G.729 @4.4k, AMR @7.95k, AMR @7.40k
  50. */
  51. extern const uint8_t ff_fc_4pulses_8bits_track_4[32];
  52. /**
  53. * Track|Pulse| Positions
  54. * -----------------------------------------
  55. * 1 | 0 | 1, 6, 11, 16, 21, 26, 31, 36
  56. * | | 3, 8, 13, 18, 23, 28, 33, 38
  57. * -----------------------------------------
  58. *
  59. * @remark Track in the table should be read top-to-bottom, left-to-right.
  60. *
  61. * @note (EE) Reference G.729D code also uses gray decoding for each
  62. * pulse index before looking up the value in the table.
  63. *
  64. * Used in G.729 @6.4k (with gray coding), AMR @5.9k (without gray coding)
  65. */
  66. extern const uint8_t ff_fc_2pulses_9bits_track1[16];
  67. extern const uint8_t ff_fc_2pulses_9bits_track1_gray[16];
  68. /**
  69. * Track|Pulse| Positions
  70. * -----------------------------------------
  71. * 2 | 1 | 0, 7, 14, 20, 27, 34, 1, 21
  72. * | | 2, 9, 15, 22, 29, 35, 6, 26
  73. * | | 4,10, 17, 24, 30, 37, 11, 31
  74. * | | 5,12, 19, 25, 32, 39, 16, 36
  75. * -----------------------------------------
  76. *
  77. * @remark Track in the table should be read top-to-bottom, left-to-right.
  78. *
  79. * @note (EE.1) This table (from the reference code) does not comply with
  80. * the specification.
  81. * The specification contains the following table:
  82. *
  83. * Track|Pulse| Positions
  84. * -----------------------------------------
  85. * 2 | 1 | 0, 5, 10, 15, 20, 25, 30, 35
  86. * | | 1, 6, 11, 16, 21, 26, 31, 36
  87. * | | 2, 7, 12, 17, 22, 27, 32, 37
  88. * | | 4, 9, 14, 19, 24, 29, 34, 39
  89. *
  90. * -----------------------------------------
  91. *
  92. * @note (EE.2) Reference G.729D code also uses gray decoding for each
  93. * pulse index before looking up the value in the table.
  94. *
  95. * Used in G.729 @6.4k (with gray coding)
  96. */
  97. extern const uint8_t ff_fc_2pulses_9bits_track2_gray[32];
  98. /**
  99. * Decode fixed-codebook vector (3.8 and D.5.8 of G.729, 5.7.1 of AMR).
  100. * @param fc_v [out] decoded fixed codebook vector (2.13)
  101. * @param tab1 table used for first pulse_count pulses
  102. * @param tab2 table used for last pulse
  103. * @param pulse_indexes fixed codebook indexes
  104. * @param pulse_signs signs of the excitation pulses (0 bit value
  105. * means negative sign)
  106. * @param bits number of bits per one pulse index
  107. * @param pulse_count number of pulses decoded using first table
  108. * @param bits length of one pulse index in bits
  109. *
  110. * Used in G.729 @8k, G.729 @4.4k, G.729 @6.4k, AMR @7.95k, AMR @7.40k
  111. */
  112. void ff_acelp_fc_pulse_per_track(
  113. int16_t* fc_v,
  114. const uint8_t *tab1,
  115. const uint8_t *tab2,
  116. int pulse_indexes,
  117. int pulse_signs,
  118. int pulse_count,
  119. int bits);
  120. /**
  121. * weighted sum of two vectors with rounding.
  122. * @param out [out] result of addition
  123. * @param in_a first vector
  124. * @param in_b second vector
  125. * @param weight_coeff_a first vector weight coefficient
  126. * @param weight_coeff_a second vector weight coefficient
  127. * @param rounder this value will be added to the sum of the two vectors
  128. * @param shift result will be shifted to right by this value
  129. * @param length vectors length
  130. *
  131. * @note It is safe to pass the same buffer for out and in_a or in_b.
  132. *
  133. * out[i] = (in_a[i]*weight_a + in_b[i]*weight_b + rounder) >> shift
  134. */
  135. void ff_acelp_weighted_vector_sum(
  136. int16_t* out,
  137. const int16_t *in_a,
  138. const int16_t *in_b,
  139. int16_t weight_coeff_a,
  140. int16_t weight_coeff_b,
  141. int16_t rounder,
  142. int shift,
  143. int length);
  144. #endif /* AVCODEC_ACELP_VECTORS_H */