diff options
author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-02-15 20:00:28 +0000 |
---|---|---|
committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-02-15 20:00:28 +0000 |
commit | 237ca504e12c06a5cfa7cd0fb9d9c672dc588f1c (patch) | |
tree | b6454cdfaa01c749e986386f7b3bc9fdc3a5f6c8 /apps/menus/main_menu.c | |
parent | 258626f4550be2e586c9e5acf20cb71ee001a8e4 (diff) |
All AAC-HE files will double the frame sample count, not only AAC-HE files with SBR upsampling. This change fixes issues with some m4a files reported in the forums.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29310 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/main_menu.c')
-rw-r--r-- | apps/menus/main_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index 902e14b819..6ee7ba4156 100644 --- a/apps/menus/main_menu.c +++ b/apps/menus/main_menu.c @@ -303,7 +303,7 @@ static int info_speak_item(int selected_item, void * data) { talk_id(LANG_BATTERY_TIME, false); talk_value(battery_level(), UNIT_PERCENT, true); - talk_value(battery_time() *60, UNIT_TIME_EXACT, true); + talk_value(battery_time() *60, UNIT_TIME, true); } else talk_id(VOICE_BLANK, false); break; |