From c277634b13117e721e43f34a09cafb93c725fa3f Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Wed, 9 Jan 2013 12:45:29 +0000 Subject: switched from single to double precision througout. closes #9 --- xtract/xtract_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xtract/xtract_types.h') 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 -- cgit v1.2.3