diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2013-01-09 12:45:29 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2013-01-09 12:45:29 +0000 |
commit | c277634b13117e721e43f34a09cafb93c725fa3f (patch) | |
tree | b4f57d1cf0c430eb700df37b074abd7e4e0acf17 /xtract/xtract_types.h | |
parent | 812e693b8c025c73ff5cddae3581b547465ab915 (diff) | |
download | LibXtract-c277634b13117e721e43f34a09cafb93c725fa3f.tar.gz LibXtract-c277634b13117e721e43f34a09cafb93c725fa3f.tar.bz2 LibXtract-c277634b13117e721e43f34a09cafb93c725fa3f.zip |
switched from single to double precision througout. closes #9
Diffstat (limited to 'xtract/xtract_types.h')
-rw-r--r-- | xtract/xtract_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xtract/xtract_types.h b/xtract/xtract_types.h index 6c22e18..fe75b6e 100644 --- a/xtract/xtract_types.h +++ b/xtract/xtract_types.h @@ -33,12 +33,12 @@ extern "C" { /* \brief Data structure used to store amplitude data between calls to xtract_attack_time and other functions. */ typedef struct _xtract_amp_tracker { int count; - float previous_amp; + double previous_amp; } xtract_amp_tracker; typedef struct _xtract_frame_tracker { int frame_count; - float *previous_frame; + double *previous_frame; } xtract_frame_tracker; #ifdef __cplusplus |