summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2008-07-17 18:36:47 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2008-07-17 18:36:47 +0000
commitb9eb18260f5c37f054cdb29b038c0c1673c0c066 (patch)
tree4ed6435336c99cea1d596be4fe31d92fe6a21eb8
parent1334738071b89982cc23b3a246fc5deba7a6fc3c (diff)
downloadrockbox-b9eb18260f5c37f054cdb29b038c0c1673c0c066.tar.gz
rockbox-b9eb18260f5c37f054cdb29b038c0c1673c0c066.zip
Too much on the last commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18085 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libfaad/SOURCES1
-rw-r--r--apps/codecs/libfaad/filtbank.c9
-rw-r--r--apps/debug_menu.c12
-rw-r--r--apps/plugins/SOURCES1
4 files changed, 10 insertions, 13 deletions
diff --git a/apps/codecs/libfaad/SOURCES b/apps/codecs/libfaad/SOURCES
index f97e14d9e4..4c7a34d210 100644
--- a/apps/codecs/libfaad/SOURCES
+++ b/apps/codecs/libfaad/SOURCES
@@ -33,4 +33,3 @@ sbr_tf_grid.c
33specrec.c 33specrec.c
34syntax.c 34syntax.c
35tns.c 35tns.c
36mdct2.c \ No newline at end of file
diff --git a/apps/codecs/libfaad/filtbank.c b/apps/codecs/libfaad/filtbank.c
index 724110ecc5..9b1bc854ad 100644
--- a/apps/codecs/libfaad/filtbank.c
+++ b/apps/codecs/libfaad/filtbank.c
@@ -1,19 +1,19 @@
1/* 1/*
2** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding 2** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com 3** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
4** 4**
5** This program is free software; you can redistribute it and/or modify 5** This program is free software; you can redistribute it and/or modify
6** it under the terms of the GNU General Public License as published by 6** it under the terms of the GNU General Public License as published by
7** the Free Software Foundation; either version 2 of the License, or 7** the Free Software Foundation; either version 2 of the License, or
8** (at your option) any later version. 8** (at your option) any later version.
9** 9**
10** This program is distributed in the hope that it will be useful, 10** This program is distributed in the hope that it will be useful,
11** but WITHOUT ANY WARRANTY; without even the implied warranty of 11** but WITHOUT ANY WARRANTY; without even the implied warranty of
12** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13** GNU General Public License for more details. 13** GNU General Public License for more details.
14** 14**
15** You should have received a copy of the GNU General Public License 15** You should have received a copy of the GNU General Public License
16** along with this program; if not, write to the Free Software 16** along with this program; if not, write to the Free Software
17** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18** 18**
19** Any non-GPL usage of this software or parts of this software is strictly 19** Any non-GPL usage of this software or parts of this software is strictly
@@ -42,7 +42,6 @@
42#include "kbd_win.h" 42#include "kbd_win.h"
43#include "sine_win.h" 43#include "sine_win.h"
44#include "mdct.h" 44#include "mdct.h"
45#include "mdct2.h"
46 45
47 46
48fb_info *filter_bank_init(uint16_t frame_len) 47fb_info *filter_bank_init(uint16_t frame_len)
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 8c624dcc9a..b2144e2169 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -303,7 +303,7 @@ static bool dbg_buffering_thread(void)
303 lcd_setfont(FONT_SYSFIXED); 303 lcd_setfont(FONT_SYSFIXED);
304 while(!done) 304 while(!done)
305 { 305 {
306 button = get_action(CONTEXT_STD,HZ*2); 306 button = get_action(CONTEXT_STD,HZ/5);
307 switch(button) 307 switch(button)
308 { 308 {
309 case ACTION_STD_NEXT: 309 case ACTION_STD_NEXT:
@@ -2041,9 +2041,9 @@ static int database_callback(int btn, struct gui_synclist *lists)
2041 simplelist_addline(SIMPLELIST_ADD_LINE, "Commit delayed: %s", 2041 simplelist_addline(SIMPLELIST_ADD_LINE, "Commit delayed: %s",
2042 stat->commit_delayed ? "Yes" : "No"); 2042 stat->commit_delayed ? "Yes" : "No");
2043 2043
2044 simplelist_addline(SIMPLELIST_ADD_LINE, "Queue length: %d", 2044 simplelist_addline(SIMPLELIST_ADD_LINE, "Queue length: %d",
2045 stat->queue_length); 2045 stat->queue_length);
2046 2046
2047 if (synced) 2047 if (synced)
2048 { 2048 {
2049 synced = false; 2049 synced = false;
@@ -2068,7 +2068,7 @@ static bool dbg_tagcache_info(void)
2068 info.action_callback = database_callback; 2068 info.action_callback = database_callback;
2069 info.hide_selection = true; 2069 info.hide_selection = true;
2070 info.scroll_all = true; 2070 info.scroll_all = true;
2071 2071
2072 /* Don't do nonblock here, must give enough processing time 2072 /* Don't do nonblock here, must give enough processing time
2073 for tagcache thread. */ 2073 for tagcache thread. */
2074 /* info.timeout = TIMEOUT_NOBLOCK; */ 2074 /* info.timeout = TIMEOUT_NOBLOCK; */
@@ -2428,7 +2428,7 @@ static bool dbg_isp1583(void)
2428 struct simplelist_info isp1583; 2428 struct simplelist_info isp1583;
2429 isp1583.scroll_all = true; 2429 isp1583.scroll_all = true;
2430 simplelist_info_init(&isp1583, "ISP1583", dbg_usb_num_items(), NULL); 2430 simplelist_info_init(&isp1583, "ISP1583", dbg_usb_num_items(), NULL);
2431 isp1583.timeout = HZ/100; 2431 isp1583.timeout = HZ/100;
2432 isp1583.hide_selection = true; 2432 isp1583.hide_selection = true;
2433 isp1583.get_name = dbg_usb_item; 2433 isp1583.get_name = dbg_usb_item;
2434 isp1583.action_callback = isp1583_action_callback; 2434 isp1583.action_callback = isp1583_action_callback;
@@ -2453,7 +2453,7 @@ static bool dbg_pic(void)
2453 struct simplelist_info pic; 2453 struct simplelist_info pic;
2454 pic.scroll_all = true; 2454 pic.scroll_all = true;
2455 simplelist_info_init(&pic, "PIC", pic_dbg_num_items(), NULL); 2455 simplelist_info_init(&pic, "PIC", pic_dbg_num_items(), NULL);
2456 pic.timeout = HZ/100; 2456 pic.timeout = HZ/100;
2457 pic.hide_selection = true; 2457 pic.hide_selection = true;
2458 pic.get_name = pic_dbg_item; 2458 pic.get_name = pic_dbg_item;
2459 pic.action_callback = pic_action_callback; 2459 pic.action_callback = pic_action_callback;
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index ac9e1c3977..4bcc144ed8 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -20,7 +20,6 @@ stats.c
20stopwatch.c 20stopwatch.c
21vbrfix.c 21vbrfix.c
22viewer.c 22viewer.c
23test_codec.c
24#ifdef HAVE_BACKLIGHT 23#ifdef HAVE_BACKLIGHT
25lamp.c 24lamp.c
26#endif /* HAVE_BACKLIGHT */ 25#endif /* HAVE_BACKLIGHT */