aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2016-06-19 02:58:23 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2016-07-17 20:40:57 +0300
commit3999450de0b6098d3d41549a58c3ff23cc0a565d (patch)
tree98ff0660f98dae0510fb65ddf3dca3b6b543c927 /src/config.h
parentc60933cd2be9f74453fd5db54ac090183b7bff83 (diff)
downloadatracdenc-3999450de0b6098d3d41549a58c3ff23cc0a565d.tar.gz
some improvements of ATRAC3 implementation:
- simple (ATRAC1 like) psychoacoustic added - possibility to encode tonal components - simple tonal component extractor - refactoring
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 942841a..698b865 100644
--- a/src/config.h
+++ b/src/config.h
@@ -2,3 +2,8 @@
#define CONFIG_DOUBLE
+#ifdef CONFIG_DOUBLE
+typedef double TFloat;
+#else
+typedef float TFloat;
+#endif