aboutsummaryrefslogtreecommitdiff
path: root/xtract/xtract_types.h
diff options
context:
space:
mode:
authorJamie Bullock <jamie@jamiebullock.com>2013-01-09 12:45:29 +0000
committerJamie Bullock <jamie@jamiebullock.com>2013-01-09 12:45:29 +0000
commitc277634b13117e721e43f34a09cafb93c725fa3f (patch)
treeb4f57d1cf0c430eb700df37b074abd7e4e0acf17 /xtract/xtract_types.h
parent812e693b8c025c73ff5cddae3581b547465ab915 (diff)
downloadLibXtract-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.h4
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