shaka-packager/base/third_party/dmg_fp
Kongqun Yang 0f24c7f9ac Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
..
LICENSE Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
README.chromium Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
dmg_fp.h Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
dtoa.cc Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
dtoa_wrapper.cc Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
float_precision_crash.patch Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
g_fmt.cc Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
gcc_64_bit.patch Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
gcc_warnings.patch Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
mac_wextra.patch Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00
win_vs2012.patch Start with media/mp4, media/webm and base codes from Chromium. 2013-09-23 18:37:14 -07:00

README.chromium

Name: David M. Gay's floating point routines
URL: http://www.netlib.org/fp/
License: MIT-like

Original dtoa.c file can be found at <http://www.netlib.org/fp/dtoa.c>.
Original g_fmt.c file can be found at <http://www.netlib.org/fp/g_fmt.c>.

List of changes made to original code:
  - wrapped functions in dmg_fp namespace
  - renamed .c files to .cc
  - added dmg_fp.h header
  - added #define IEEE_8087 to dtoa.cc
  - added #define NO_HEX_FP to dtoa.cc
  - made some minor changes to allow clean compilation under g++ -Wall, see
    gcc_warnings.patch.
  - made some minor changes to build on 64-bit, see gcc_64_bit.patch.
  - made minor changes for -Wextra for Mac build, see mac_wextra.patch
  - crash fix for running with reduced CPU float precision, see
    float_precision_crash.patch and crbug.com/123157
  - Fix for 'warning C4703: potentially uninitialized local pointer variable'
    in VS2012.