intfloat_readwrite.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * portable IEEE float/double read/write functions
  3.  *
  4.  * Copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at>
  5.  *
  6.  * This library 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 of the License, or (at your option) any later version.
  10.  *
  11.  * This library 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 this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20.  
  21. /**
  22.  * @file intfloat_readwrite.c
  23.  * Portable IEEE float/double read/write functions.
  24.  */
  25.  
  26. #include "common.h"
  27. double av_int2dbl(int64_t v){
  28.     if(v+v > 0xFFELLU<<52)
  29.         return 0.0/0.0;
  30.     return ldexp(((v&((1LL<<52)-1)) + (1LL<<52)) * (v>>63|1), (v>>52&0x7FF)-1075);
  31. }
  32. float av_int2flt(int32_t v){
  33.     if(v+v > 0xFF000000U)
  34.         return 0.0/0.0;
  35.     return ldexp(((v&0x7FFFFF) + (1<<23)) * (v>>31|1), (v>>23&0xFF)-150);
  36. }
  37. int64_t av_dbl2int(double d){
  38.     int e;
  39.     if     ( !d) return 0;
  40.     else if(d-d) return 0x7FF0000000000000LL + ((int64_t)(d<0)<<63) + (d!=d);
  41.     d= frexp(d, &e);
  42.     return (int64_t)(d<0)<<63 | (e+1022LL)<<52 | (int64_t)((fabs(d)-0.5)*(1LL<<53));
  43. }
  44. int32_t av_flt2int(float d){
  45.     int e;
  46.     if     ( !d) return 0;
  47.     else if(d-d) return 0x7F800000 + ((d<0)<<31) + (d!=d);
  48.     d= frexp(d, &e);
  49.     return (d<0)<<31 | (e+126)<<23 | (int64_t)((fabs(d)-0.5)*(1<<24));
  50. }