1
0
Fork 0
forked from len0rd/rockbox

Too much on the last commit.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18085 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2008-07-17 18:36:47 +00:00
parent 1334738071
commit b9eb18260f
4 changed files with 10 additions and 13 deletions

View file

@ -33,4 +33,3 @@ sbr_tf_grid.c
specrec.c specrec.c
syntax.c syntax.c
tns.c tns.c
mdct2.c

View file

@ -1,19 +1,19 @@
/* /*
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by ** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or ** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version. ** (at your option) any later version.
** **
** This program is distributed in the hope that it will be useful, ** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of ** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details. ** GNU General Public License for more details.
** **
** You should have received a copy of the GNU General Public License ** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software ** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
** **
** Any non-GPL usage of this software or parts of this software is strictly ** Any non-GPL usage of this software or parts of this software is strictly
@ -42,7 +42,6 @@
#include "kbd_win.h" #include "kbd_win.h"
#include "sine_win.h" #include "sine_win.h"
#include "mdct.h" #include "mdct.h"
#include "mdct2.h"
fb_info *filter_bank_init(uint16_t frame_len) fb_info *filter_bank_init(uint16_t frame_len)

View file

@ -303,7 +303,7 @@ static bool dbg_buffering_thread(void)
lcd_setfont(FONT_SYSFIXED); lcd_setfont(FONT_SYSFIXED);
while(!done) while(!done)
{ {
button = get_action(CONTEXT_STD,HZ*2); button = get_action(CONTEXT_STD,HZ/5);
switch(button) switch(button)
{ {
case ACTION_STD_NEXT: case ACTION_STD_NEXT:
@ -2041,9 +2041,9 @@ static int database_callback(int btn, struct gui_synclist *lists)
simplelist_addline(SIMPLELIST_ADD_LINE, "Commit delayed: %s", simplelist_addline(SIMPLELIST_ADD_LINE, "Commit delayed: %s",
stat->commit_delayed ? "Yes" : "No"); stat->commit_delayed ? "Yes" : "No");
simplelist_addline(SIMPLELIST_ADD_LINE, "Queue length: %d", simplelist_addline(SIMPLELIST_ADD_LINE, "Queue length: %d",
stat->queue_length); stat->queue_length);
if (synced) if (synced)
{ {
synced = false; synced = false;
@ -2068,7 +2068,7 @@ static bool dbg_tagcache_info(void)
info.action_callback = database_callback; info.action_callback = database_callback;
info.hide_selection = true; info.hide_selection = true;
info.scroll_all = true; info.scroll_all = true;
/* Don't do nonblock here, must give enough processing time /* Don't do nonblock here, must give enough processing time
for tagcache thread. */ for tagcache thread. */
/* info.timeout = TIMEOUT_NOBLOCK; */ /* info.timeout = TIMEOUT_NOBLOCK; */
@ -2428,7 +2428,7 @@ static bool dbg_isp1583(void)
struct simplelist_info isp1583; struct simplelist_info isp1583;
isp1583.scroll_all = true; isp1583.scroll_all = true;
simplelist_info_init(&isp1583, "ISP1583", dbg_usb_num_items(), NULL); simplelist_info_init(&isp1583, "ISP1583", dbg_usb_num_items(), NULL);
isp1583.timeout = HZ/100; isp1583.timeout = HZ/100;
isp1583.hide_selection = true; isp1583.hide_selection = true;
isp1583.get_name = dbg_usb_item; isp1583.get_name = dbg_usb_item;
isp1583.action_callback = isp1583_action_callback; isp1583.action_callback = isp1583_action_callback;
@ -2453,7 +2453,7 @@ static bool dbg_pic(void)
struct simplelist_info pic; struct simplelist_info pic;
pic.scroll_all = true; pic.scroll_all = true;
simplelist_info_init(&pic, "PIC", pic_dbg_num_items(), NULL); simplelist_info_init(&pic, "PIC", pic_dbg_num_items(), NULL);
pic.timeout = HZ/100; pic.timeout = HZ/100;
pic.hide_selection = true; pic.hide_selection = true;
pic.get_name = pic_dbg_item; pic.get_name = pic_dbg_item;
pic.action_callback = pic_action_callback; pic.action_callback = pic_action_callback;

View file

@ -20,7 +20,6 @@ stats.c
stopwatch.c stopwatch.c
vbrfix.c vbrfix.c
viewer.c viewer.c
test_codec.c
#ifdef HAVE_BACKLIGHT #ifdef HAVE_BACKLIGHT
lamp.c lamp.c
#endif /* HAVE_BACKLIGHT */ #endif /* HAVE_BACKLIGHT */