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.

281 lines
8.2KB

  1. /*
  2. * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVUTIL_SOFTFLOAT_H
  21. #define AVUTIL_SOFTFLOAT_H
  22. #include <stdint.h>
  23. #include "common.h"
  24. #include "avassert.h"
  25. #include "softfloat_tables.h"
  26. #define MIN_EXP -149
  27. #define MAX_EXP 126
  28. #define ONE_BITS 29
  29. typedef struct SoftFloat{
  30. int32_t mant;
  31. int32_t exp;
  32. }SoftFloat;
  33. static const SoftFloat FLOAT_0 = { 0, MIN_EXP}; ///< 0.0
  34. static const SoftFloat FLOAT_05 = { 0x20000000, 0}; ///< 0.5
  35. static const SoftFloat FLOAT_1 = { 0x20000000, 1}; ///< 1.0
  36. static const SoftFloat FLOAT_EPSILON = { 0x29F16B12, -16}; ///< A small value
  37. static const SoftFloat FLOAT_1584893192 = { 0x32B771ED, 1}; ///< 1.584893192 (10^.2)
  38. static const SoftFloat FLOAT_100000 = { 0x30D40000, 17}; ///< 100000
  39. static const SoftFloat FLOAT_0999999 = { 0x3FFFFBCE, 0}; ///< 0.999999
  40. /**
  41. * Convert a SoftFloat to a double precision float.
  42. */
  43. static inline av_const double av_sf2double(SoftFloat v) {
  44. v.exp -= ONE_BITS +1;
  45. if(v.exp > 0) return (double)v.mant * (double)(1 << v.exp);
  46. else return (double)v.mant / (double)(1 << (-v.exp));
  47. }
  48. static av_const SoftFloat av_normalize_sf(SoftFloat a){
  49. if(a.mant){
  50. #if 1
  51. while((a.mant + 0x1FFFFFFFU)<0x3FFFFFFFU){
  52. a.mant += a.mant;
  53. a.exp -= 1;
  54. }
  55. #else
  56. int s=ONE_BITS - av_log2(FFABS(a.mant));
  57. a.exp -= s;
  58. a.mant <<= s;
  59. #endif
  60. if(a.exp < MIN_EXP){
  61. a.exp = MIN_EXP;
  62. a.mant= 0;
  63. }
  64. }else{
  65. a.exp= MIN_EXP;
  66. }
  67. return a;
  68. }
  69. static inline av_const SoftFloat av_normalize1_sf(SoftFloat a){
  70. #if 1
  71. if((int32_t)(a.mant + 0x40000000U) <= 0){
  72. a.exp++;
  73. a.mant>>=1;
  74. }
  75. av_assert2(a.mant < 0x40000000 && a.mant > -0x40000000);
  76. av_assert2(a.exp <= MAX_EXP);
  77. return a;
  78. #elif 1
  79. int t= a.mant + 0x40000000 < 0;
  80. return (SoftFloat){ a.mant>>t, a.exp+t};
  81. #else
  82. int t= (a.mant + 0x3FFFFFFFU)>>31;
  83. return (SoftFloat){a.mant>>t, a.exp+t};
  84. #endif
  85. }
  86. /**
  87. * @return Will not be more denormalized than a*b. So if either input is
  88. * normalized, then the output will not be worse then the other input.
  89. * If both are normalized, then the output will be normalized.
  90. */
  91. static inline av_const SoftFloat av_mul_sf(SoftFloat a, SoftFloat b){
  92. a.exp += b.exp;
  93. av_assert2((int32_t)((a.mant * (int64_t)b.mant) >> ONE_BITS) == (a.mant * (int64_t)b.mant) >> ONE_BITS);
  94. a.mant = (a.mant * (int64_t)b.mant) >> ONE_BITS;
  95. a = av_normalize1_sf((SoftFloat){a.mant, a.exp - 1});
  96. if (!a.mant || a.exp < MIN_EXP)
  97. return FLOAT_0;
  98. return a;
  99. }
  100. /**
  101. * b has to be normalized and not zero.
  102. * @return Will not be more denormalized than a.
  103. */
  104. static inline av_const SoftFloat av_div_sf(SoftFloat a, SoftFloat b){
  105. a.exp -= b.exp;
  106. a.mant = ((int64_t)a.mant<<(ONE_BITS+1)) / b.mant;
  107. a = av_normalize1_sf(a);
  108. if (!a.mant || a.exp < MIN_EXP)
  109. return FLOAT_0;
  110. return a;
  111. }
  112. /**
  113. * Compares two SoftFloats.
  114. * @returns < 0 if the first is less
  115. * > 0 if the first is greater
  116. * 0 if they are equal
  117. */
  118. static inline av_const int av_cmp_sf(SoftFloat a, SoftFloat b){
  119. int t= a.exp - b.exp;
  120. if (t <-31) return - b.mant ;
  121. else if (t < 0) return (a.mant >> (-t)) - b.mant ;
  122. else if (t < 32) return a.mant - (b.mant >> t);
  123. else return a.mant ;
  124. }
  125. /**
  126. * Compares two SoftFloats.
  127. * @returns 1 if a is greater than b, 0 otherwise
  128. */
  129. static inline av_const int av_gt_sf(SoftFloat a, SoftFloat b)
  130. {
  131. int t= a.exp - b.exp;
  132. if (t <-31) return 0 > b.mant ;
  133. else if (t < 0) return (a.mant >> (-t)) > b.mant ;
  134. else if (t < 32) return a.mant > (b.mant >> t);
  135. else return a.mant > 0 ;
  136. }
  137. /**
  138. * @returns the sum of 2 SoftFloats.
  139. */
  140. static inline av_const SoftFloat av_add_sf(SoftFloat a, SoftFloat b){
  141. int t= a.exp - b.exp;
  142. if (t <-31) return b;
  143. else if (t < 0) return av_normalize_sf(av_normalize1_sf((SoftFloat){ b.mant + (a.mant >> (-t)), b.exp}));
  144. else if (t < 32) return av_normalize_sf(av_normalize1_sf((SoftFloat){ a.mant + (b.mant >> t ), a.exp}));
  145. else return a;
  146. }
  147. /**
  148. * @returns the difference of 2 SoftFloats.
  149. */
  150. static inline av_const SoftFloat av_sub_sf(SoftFloat a, SoftFloat b){
  151. return av_add_sf(a, (SoftFloat){ -b.mant, b.exp});
  152. }
  153. //FIXME log, exp, pow
  154. /**
  155. * Converts a mantisse and exponent to a SoftFloat
  156. * @returns a SoftFloat with value v * 2^frac_bits
  157. */
  158. static inline av_const SoftFloat av_int2sf(int v, int frac_bits){
  159. int exp_offset = 0;
  160. if(v <= INT_MIN + 1){
  161. exp_offset = 1;
  162. v>>=1;
  163. }
  164. return av_normalize_sf(av_normalize1_sf((SoftFloat){v, ONE_BITS + 1 - frac_bits + exp_offset}));
  165. }
  166. /**
  167. * Converts a SoftFloat to an integer.
  168. * Rounding is to -inf.
  169. */
  170. static inline av_const int av_sf2int(SoftFloat v, int frac_bits){
  171. v.exp += frac_bits - (ONE_BITS + 1);
  172. if(v.exp >= 0) return v.mant << v.exp ;
  173. else return v.mant >>(-v.exp);
  174. }
  175. /**
  176. * Rounding-to-nearest used.
  177. */
  178. static av_always_inline SoftFloat av_sqrt_sf(SoftFloat val)
  179. {
  180. int tabIndex, rem;
  181. if (val.mant == 0)
  182. val.exp = MIN_EXP;
  183. else if (val.mant < 0)
  184. abort();
  185. else
  186. {
  187. tabIndex = (val.mant - 0x20000000) >> 20;
  188. rem = val.mant & 0xFFFFF;
  189. val.mant = (int)(((int64_t)av_sqrttbl_sf[tabIndex] * (0x100000 - rem) +
  190. (int64_t)av_sqrttbl_sf[tabIndex + 1] * rem +
  191. 0x80000) >> 20);
  192. val.mant = (int)(((int64_t)av_sqr_exp_multbl_sf[val.exp & 1] * val.mant +
  193. 0x10000000) >> 29);
  194. if (val.mant < 0x40000000)
  195. val.exp -= 2;
  196. else
  197. val.mant >>= 1;
  198. val.exp = (val.exp >> 1) + 1;
  199. }
  200. return val;
  201. }
  202. /**
  203. * Rounding-to-nearest used.
  204. */
  205. static av_unused void av_sincos_sf(int a, int *s, int *c)
  206. {
  207. int idx, sign;
  208. int sv, cv;
  209. int st, ct;
  210. idx = a >> 26;
  211. sign = (idx << 27) >> 31;
  212. cv = av_costbl_1_sf[idx & 0xf];
  213. cv = (cv ^ sign) - sign;
  214. idx -= 8;
  215. sign = (idx << 27) >> 31;
  216. sv = av_costbl_1_sf[idx & 0xf];
  217. sv = (sv ^ sign) - sign;
  218. idx = a >> 21;
  219. ct = av_costbl_2_sf[idx & 0x1f];
  220. st = av_sintbl_2_sf[idx & 0x1f];
  221. idx = (int)(((int64_t)cv * ct - (int64_t)sv * st + 0x20000000) >> 30);
  222. sv = (int)(((int64_t)cv * st + (int64_t)sv * ct + 0x20000000) >> 30);
  223. cv = idx;
  224. idx = a >> 16;
  225. ct = av_costbl_3_sf[idx & 0x1f];
  226. st = av_sintbl_3_sf[idx & 0x1f];
  227. idx = (int)(((int64_t)cv * ct - (int64_t)sv * st + 0x20000000) >> 30);
  228. sv = (int)(((int64_t)cv * st + (int64_t)sv * ct + 0x20000000) >> 30);
  229. cv = idx;
  230. idx = a >> 11;
  231. ct = (int)(((int64_t)av_costbl_4_sf[idx & 0x1f] * (0x800 - (a & 0x7ff)) +
  232. (int64_t)av_costbl_4_sf[(idx & 0x1f)+1]*(a & 0x7ff) +
  233. 0x400) >> 11);
  234. st = (int)(((int64_t)av_sintbl_4_sf[idx & 0x1f] * (0x800 - (a & 0x7ff)) +
  235. (int64_t)av_sintbl_4_sf[(idx & 0x1f) + 1] * (a & 0x7ff) +
  236. 0x400) >> 11);
  237. *c = (int)(((int64_t)cv * ct + (int64_t)sv * st + 0x20000000) >> 30);
  238. *s = (int)(((int64_t)cv * st + (int64_t)sv * ct + 0x20000000) >> 30);
  239. }
  240. #endif /* AVUTIL_SOFTFLOAT_H */