fixed_dsp.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * Copyright (c) 2012
  3. * MIPS Technologies, Inc., California.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of the MIPS Technologies, Inc., nor the names of its
  14. * contributors may be used to endorse or promote products derived from
  15. * this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. *
  29. * Author: Nedeljko Babic (nbabic@mips.com)
  30. *
  31. * This file is part of FFmpeg.
  32. *
  33. * FFmpeg is free software; you can redistribute it and/or
  34. * modify it under the terms of the GNU Lesser General Public
  35. * License as published by the Free Software Foundation; either
  36. * version 2.1 of the License, or (at your option) any later version.
  37. *
  38. * FFmpeg is distributed in the hope that it will be useful,
  39. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  40. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  41. * Lesser General Public License for more details.
  42. *
  43. * You should have received a copy of the GNU Lesser General Public
  44. * License along with FFmpeg; if not, write to the Free Software
  45. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  46. */
  47. #ifndef AVUTIL_FIXED_DSP_H
  48. #define AVUTIL_FIXED_DSP_H
  49. #include <stdint.h>
  50. #include "attributes.h"
  51. #include "common.h"
  52. #include "libavcodec/mathops.h"
  53. typedef struct AVFixedDSPContext {
  54. /* Assume len is a multiple of 16, and arrays are 32-byte aligned */
  55. /* Results of multiplications are scaled down by 31 bit (and rounded) if not
  56. * stated otherwise */
  57. /**
  58. * Overlap/add with window function.
  59. * Result is scaled down by "bits" bits.
  60. * Used primarily by MDCT-based audio codecs.
  61. * Source and destination vectors must overlap exactly or not at all.
  62. *
  63. * @param dst result vector
  64. * constraints: 16-byte aligned
  65. * @param src0 first source vector
  66. * constraints: 16-byte aligned
  67. * @param src1 second source vector
  68. * constraints: 16-byte aligned
  69. * @param win half-window vector
  70. * constraints: 16-byte aligned
  71. * @param len length of vector
  72. * constraints: multiple of 4
  73. * @param bits scaling parameter
  74. *
  75. */
  76. void (*vector_fmul_window_scaled)(int16_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len, uint8_t bits);
  77. /**
  78. * Overlap/add with window function.
  79. * Used primarily by MDCT-based audio codecs.
  80. * Source and destination vectors must overlap exactly or not at all.
  81. *
  82. * @param dst result vector
  83. * constraints: 32-byte aligned
  84. * @param src0 first source vector
  85. * constraints: 16-byte aligned
  86. * @param src1 second source vector
  87. * constraints: 16-byte aligned
  88. * @param win half-window vector
  89. * constraints: 16-byte aligned
  90. * @param len length of vector
  91. * constraints: multiple of 4
  92. */
  93. void (*vector_fmul_window)(int32_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len);
  94. /**
  95. * Fixed-point multiplication that calculates the entry wise product of two
  96. * vectors of integers and stores the result in a vector of integers.
  97. *
  98. * @param dst output vector
  99. * constraints: 32-byte aligned
  100. * @param src0 first input vector
  101. * constraints: 32-byte aligned
  102. * @param src1 second input vector
  103. * constraints: 32-byte aligned
  104. * @param len number of elements in the input
  105. * constraints: multiple of 16
  106. */
  107. void (*vector_fmul)(int *dst, const int *src0, const int *src1,
  108. int len);
  109. void (*vector_fmul_reverse)(int *dst, const int *src0, const int *src1, int len);
  110. /**
  111. * Calculate the entry wise product of two vectors of integers, add a third vector of
  112. * integers and store the result in a vector of integers.
  113. *
  114. * @param dst output vector
  115. * constraints: 32-byte aligned
  116. * @param src0 first input vector
  117. * constraints: 32-byte aligned
  118. * @param src1 second input vector
  119. * constraints: 32-byte aligned
  120. * @param src2 third input vector
  121. * constraints: 32-byte aligned
  122. * @param len number of elements in the input
  123. * constraints: multiple of 16
  124. */
  125. void (*vector_fmul_add)(int *dst, const int *src0, const int *src1,
  126. const int *src2, int len);
  127. /**
  128. * Calculate the scalar product of two vectors of integers.
  129. *
  130. * @param v1 first vector, 16-byte aligned
  131. * @param v2 second vector, 16-byte aligned
  132. * @param len length of vectors, multiple of 4
  133. *
  134. * @return sum of elementwise products
  135. */
  136. int (*scalarproduct_fixed)(const int *v1, const int *v2, int len);
  137. /**
  138. * Calculate the sum and difference of two vectors of integers.
  139. *
  140. * @param v1 first input vector, sum output, 16-byte aligned
  141. * @param v2 second input vector, difference output, 16-byte aligned
  142. * @param len length of vectors, multiple of 4
  143. */
  144. void (*butterflies_fixed)(int *av_restrict v1, int *av_restrict v2, int len);
  145. } AVFixedDSPContext;
  146. /**
  147. * Allocate and initialize a fixed DSP context.
  148. * note: should be freed with a av_free call when no longer needed.
  149. *
  150. * @param strict setting to non-zero avoids using functions which may not be IEEE-754 compliant
  151. */
  152. AVFixedDSPContext * avpriv_alloc_fixed_dsp(int strict);
  153. void ff_fixed_dsp_init_x86(AVFixedDSPContext *fdsp);
  154. /**
  155. * Calculate the square root
  156. *
  157. * @param x input fixed point number
  158. *
  159. * @param bits format of fixed point number (32 - bits).bits
  160. *
  161. * note: input is normalized to (0, 1) fixed point value
  162. */
  163. static av_always_inline int fixed_sqrt(int x, int bits)
  164. {
  165. int retval, bit_mask, guess, square, i;
  166. int64_t accu;
  167. int shift1 = 30 - bits;
  168. int shift2 = bits - 15;
  169. if (shift1 > 0) retval = ff_sqrt(x << shift1);
  170. else retval = ff_sqrt(x >> -shift1);
  171. if (shift2 > 0) {
  172. retval = retval << shift2;
  173. bit_mask = (1 << (shift2 - 1));
  174. for (i=0; i<shift2; i++){
  175. guess = retval + bit_mask;
  176. accu = (int64_t)guess * guess;
  177. square = (int)((accu + bit_mask) >> bits);
  178. if (x >= square)
  179. retval += bit_mask;
  180. bit_mask >>= 1;
  181. }
  182. }
  183. else retval >>= (-shift2);
  184. return retval;
  185. }
  186. #endif /* AVUTIL_FIXED_DSP_H */