diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-09-26 17:44:43 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-09-26 17:44:43 +0000 |
| commit | 287deb0e74855349baebe30162303b08ff4bbf5e (patch) | |
| tree | 5f0f0b82aefa00c0e65ade8811d498b125ad2886 /apps/talk.h | |
| parent | 183499a2d43ebcec9a522bbcbde506f0b3c5e01d (diff) | |
| download | rockbox-287deb0e74855349baebe30162303b08ff4bbf5e.zip rockbox-287deb0e74855349baebe30162303b08ff4bbf5e.tar.gz rockbox-287deb0e74855349baebe30162303b08ff4bbf5e.tar.bz2 rockbox-287deb0e74855349baebe30162303b08ff4bbf5e.tar.xz | |
Fixed voice units in recording quality and filesplit by size options.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11063 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.h')
| -rw-r--r-- | apps/talk.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/talk.h b/apps/talk.h index 2f2099a..bfd0835 100644 --- a/apps/talk.h +++ b/apps/talk.h @@ -27,6 +27,7 @@ #include <stdbool.h> enum { + /* See array "unit_voiced" in talk.c function "talk_value" */ UNIT_INT = 1, /* plain number */ UNIT_SIGNED, /* number with mandatory sign (even if positive) */ UNIT_MS, /* milliseconds */ @@ -45,7 +46,7 @@ enum { UNIT_LAST /* END MARKER */ }; -#define UNIT_SHIFT (32-4) /* this many bits left from UNIT_xx enum */ +#define UNIT_SHIFT (32-5) /* this many bits left from UNIT_xx enum */ /* make a "talkable" ID from number + unit unit is upper 4 bits, number the remaining (in regular 2's complement) */ |