intfloat_readwrite.c 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * portable IEEE float/double read/write functions
  3. *
  4. * Copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at>
  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. /**
  23. * @file libavutil/intfloat_readwrite.c
  24. * portable IEEE float/double read/write functions
  25. */
  26. #include "common.h"
  27. #include "intfloat_readwrite.h"
  28. double av_int2dbl(int64_t v){
  29. if(v+v > 0xFFEULL<<52)
  30. return 0.0/0.0;
  31. return ldexp(((v&((1LL<<52)-1)) + (1LL<<52)) * (v>>63|1), (v>>52&0x7FF)-1075);
  32. }
  33. float av_int2flt(int32_t v){
  34. if(v+v > 0xFF000000U)
  35. return 0.0/0.0;
  36. return ldexp(((v&0x7FFFFF) + (1<<23)) * (v>>31|1), (v>>23&0xFF)-150);
  37. }
  38. double av_ext2dbl(const AVExtFloat ext){
  39. uint64_t m = 0;
  40. int e, i;
  41. for (i = 0; i < 8; i++)
  42. m = (m<<8) + ext.mantissa[i];
  43. e = (((int)ext.exponent[0]&0x7f)<<8) | ext.exponent[1];
  44. if (e == 0x7fff && m)
  45. return 0.0/0.0;
  46. e -= 16383 + 63; /* In IEEE 80 bits, the whole (i.e. 1.xxxx)
  47. * mantissa bit is written as opposed to the
  48. * single and double precision formats. */
  49. if (ext.exponent[0]&0x80)
  50. m= -m;
  51. return ldexp(m, e);
  52. }
  53. int64_t av_dbl2int(double d){
  54. int e;
  55. if ( !d) return 0;
  56. else if(d-d) return 0x7FF0000000000000LL + ((int64_t)(d<0)<<63) + (d!=d);
  57. d= frexp(d, &e);
  58. return (int64_t)(d<0)<<63 | (e+1022LL)<<52 | (int64_t)((fabs(d)-0.5)*(1LL<<53));
  59. }
  60. int32_t av_flt2int(float d){
  61. int e;
  62. if ( !d) return 0;
  63. else if(d-d) return 0x7F800000 + ((d<0)<<31) + (d!=d);
  64. d= frexp(d, &e);
  65. return (d<0)<<31 | (e+126)<<23 | (int64_t)((fabs(d)-0.5)*(1<<24));
  66. }
  67. AVExtFloat av_dbl2ext(double d){
  68. struct AVExtFloat ext= {{0}};
  69. int e, i; double f; uint64_t m;
  70. f = fabs(frexp(d, &e));
  71. if (f >= 0.5 && f < 1) {
  72. e += 16382;
  73. ext.exponent[0] = e>>8;
  74. ext.exponent[1] = e;
  75. m = (uint64_t)ldexp(f, 64);
  76. for (i=0; i < 8; i++)
  77. ext.mantissa[i] = m>>(56-(i<<3));
  78. } else if (f != 0.0) {
  79. ext.exponent[0] = 0x7f; ext.exponent[1] = 0xff;
  80. if (f != 1/0.0)
  81. ext.mantissa[0] = ~0;
  82. }
  83. if (d < 0)
  84. ext.exponent[0] |= 0x80;
  85. return ext;
  86. }