From 287deb0e74855349baebe30162303b08ff4bbf5e Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Tue, 26 Sep 2006 17:44:43 +0000 Subject: 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 --- apps/talk.c | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) (limited to 'apps/talk.c') diff --git a/apps/talk.c b/apps/talk.c index 21c6f4bb1a..1da24153d2 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -717,19 +717,33 @@ int talk_value(long n, int unit, bool enqueue) int unit_id; static const int unit_voiced[] = { /* lookup table for the voice ID of the units */ - -1, -1, -1, /* regular ID, int, signed */ - VOICE_MILLISECONDS, /* here come the "real" units */ - VOICE_SECONDS, - VOICE_MINUTES, - VOICE_HOURS, - VOICE_KHZ, - VOICE_DB, - VOICE_PERCENT, - VOICE_MILLIAMPHOURS, - VOICE_PIXEL, - VOICE_PER_SEC, - VOICE_HERTZ, - VOICE_KBIT_PER_SEC, + [0 ... UNIT_LAST-1] = -1, /* regular ID, int, signed */ + [UNIT_MS] + = VOICE_MILLISECONDS, /* here come the "real" units */ + [UNIT_SEC] + = VOICE_SECONDS, + [UNIT_MIN] + = VOICE_MINUTES, + [UNIT_HOUR] + = VOICE_HOURS, + [UNIT_KHZ] + = VOICE_KHZ, + [UNIT_DB] + = VOICE_DB, + [UNIT_PERCENT] + = VOICE_PERCENT, + [UNIT_MAH] + = VOICE_MILLIAMPHOURS, + [UNIT_PIXEL] + = VOICE_PIXEL, + [UNIT_PER_SEC] + = VOICE_PER_SEC, + [UNIT_HERTZ] + = VOICE_HERTZ, + [UNIT_MB] + = LANG_MEGABYTE, + [UNIT_KBIT] + = VOICE_KBIT_PER_SEC, }; #if CONFIG_CODEC != SWCODEC -- cgit v1.2.3