rockbox/apps
Alexander Levin af23b06b7c New plugin: pitch detector (FS#8768) by Michael Lechner and David Johnston
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22663 a1c6a512-1295-4272-9138-f99709370657
2009-09-08 16:45:05 +00:00
..
bitmaps Fix Onda 2009-07-19 23:53:47 +00:00
codecs Fix for FS#10492, by Aoyumi: Data abort errors when playing some Vorbis files. 2009-09-07 19:39:51 +00:00
eqs
gui Fix/commit FS#10595. A (sub)line could be part of the previous viewport due to a off-by-one bug in the indexing. 2009-09-08 16:34:51 +00:00
keymaps Make the left quickscreen item work in touchscreen grid mode. 2009-09-02 20:05:01 +00:00
lang Fix yellow aka remove a typo. 2009-09-07 20:12:23 +00:00
menus Fix buttonbar handling/theme changed handling in lists. 2009-09-07 17:37:06 +00:00
metadata Logic was backwards on the check for NSF file format. Fix that and save one memcmp. 2009-08-30 03:52:11 +00:00
player Fix yellows. 2009-08-12 14:51:16 +00:00
plugins New plugin: pitch detector (FS#8768) by Michael Lechner and David Johnston 2009-09-08 16:45:05 +00:00
recorder rework AA load/display handling in the skins to get them working in viewports again 2009-09-07 02:36:56 +00:00
abrepeat.c Still failing at git-svn, but I won't give up! The previous commit 2009-07-03 20:42:42 +00:00
abrepeat.h
action.c Fix the bug where the short-long fwd/back action would ffwd/rewind the next folder (consult the manual if that makes no sense) 2009-07-03 05:08:33 +00:00
action.h Quickscreen: 4th item 2009-08-29 14:42:03 +00:00
alarm_menu.c
alarm_menu.h
appevents.h Fix buttonbar handling/theme changed handling in lists. 2009-09-07 17:37:06 +00:00
applimits.h
apps.make Make apps/features depend on config*.h 2009-08-20 22:19:04 +00:00
audio_path.c
bookmark.c Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
bookmark.h
buffering.c FS#10080 2009-07-14 13:57:45 +00:00
buffering.h
codecs.c FS#10080 2009-07-14 13:57:45 +00:00
codecs.h FS#10080 2009-07-14 13:57:45 +00:00
core_asmdefs.c Add new asmdefs mechanism for exporting information only available to the C compiler for use in asm files, and use it in arm jpeg idct. See apps/apps.make, apps/core_asmdefs.c, and apps/recorder/jpeg_idct_arm.S for details. 2009-07-13 00:40:35 +00:00
cuesheet.c Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
cuesheet.h more cuesheet cleanup. pass the cuesheet into cue functions so they dont have to call audio_current_track() 2009-07-24 01:13:30 +00:00
debug_menu.c fix yellow 2009-08-20 17:03:50 +00:00
debug_menu.h
dsp.c FS#10199: Adds limiter DSP function 2009-08-18 03:24:45 +00:00
dsp.h FS#10199: Adds limiter DSP function 2009-08-18 03:24:45 +00:00
dsp_arm.S * ARM asm DSP and codec/plugin functions: Use r12 scratch register properly 2009-07-12 13:14:35 +00:00
dsp_asm.h
dsp_cf.S
enc_config.c
enc_config.h
eq.c Take 2 at 'Consolidate all fixed point math routines in one library' (FS#10400) by Jeffrey Goode 2009-07-05 18:06:07 +00:00
eq.h Take 2 at 'Consolidate all fixed point math routines in one library' (FS#10400) by Jeffrey Goode 2009-07-05 18:06:07 +00:00
eq_arm.S
eq_cf.S
features.txt Fix FS#10556 so that we now include the wps tags for the hold switch and remote hold switch for other targets than the iriver h100 and h300, introduce a new feature for remote_button_hold 2009-08-24 15:19:14 +00:00
filetree.c User definable UI viewport, to be able to restrict the UI into a viewport for all bitmap displays. 2009-08-16 22:20:11 +00:00
filetree.h
filetypes.c Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
filetypes.h
fixedpoint.c * FS#10411 - Fixed point math code is bloated by Jeffrey Goode 2009-07-07 13:36:34 +00:00
fixedpoint.h * FS#10411 - Fixed point math code is bloated by Jeffrey Goode 2009-07-07 13:36:34 +00:00
fracmul.h Take 2 at 'Consolidate all fixed point math routines in one library' (FS#10400) by Jeffrey Goode 2009-07-05 18:06:07 +00:00
iap.c Add missing svn:keywords property. 2009-08-03 17:59:38 +00:00
keyboard.h
language.c
language.h
logfdisp.c A new implementation of logf, logfdisplay and logfdump. 2009-08-21 22:54:23 +00:00
logfdisp.h
main.c Fix buttonbar handling/theme changed handling in lists. 2009-09-07 17:37:06 +00:00
menu.c Quickscreen: 4th item 2009-08-29 14:42:03 +00:00
menu.h
metadata.c Accept FS#10570 by Jason Yu. Adds metadata parsing for NSF files. 2009-08-30 02:53:15 +00:00
metadata.h Support for playback of atrac3 audio in rm, in sim. 2009-08-14 17:36:57 +00:00
misc.c Remove some unused #includes 2009-08-06 08:20:06 +00:00
misc.h
mp3data.c Quick fix to allow certain MP3 files to play. If a Xing or Info header didn't properly set both the frame count and byte count, then the bitrate was set to zero, preventing playback. Better to use the bitrate of the first audio frame in this case. (More sanity checking of the frame count should perhaps be done.) 2009-09-03 21:14:13 +00:00
mp3data.h
mpeg.c fix FS#10453 - the cuesheet changes broke playback on swcodec, rework it so it uses the audio buffer instead of a temp buffer from the start (which also removes one pretty big memcpy) 2009-07-20 15:50:26 +00:00
mpeg.h
onplay.c Change the "Rename failed" message to a splash. 2009-08-23 15:22:50 +00:00
onplay.h
pcmbuf.c FS#10199: Adds limiter DSP function 2009-08-18 03:24:45 +00:00
pcmbuf.h FS#10199: Adds limiter DSP function 2009-08-18 03:24:45 +00:00
playback.c Remove unused defines 2009-08-23 00:25:55 +00:00
playback.h A bit mroe wps/skin engine cleanup so that the structs the wps uses can be static: 2009-08-03 15:06:30 +00:00
playlist.c FS#10080 2009-07-14 13:57:45 +00:00
playlist.h
playlist_catalog.c Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
playlist_catalog.h
playlist_menu.h
playlist_viewer.c Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
playlist_viewer.h
plugin.c Resort, upnumber plugin API 2009-08-19 13:28:19 +00:00
plugin.h Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
README
replaygain.c FS#10080 2009-07-14 13:57:45 +00:00
replaygain.h
root_menu.c User definable UI viewport, to be able to restrict the UI into a viewport for all bitmap displays. 2009-08-16 22:20:11 +00:00
root_menu.h
screen_access.c Fix buttonbar handling/theme changed handling in lists. 2009-09-07 17:37:06 +00:00
screen_access.h Const police raid\! 2009-09-04 16:04:02 +00:00
screens.c Fix up statusbar handling in the usb screen a bit more, using the GUI_EVENT_ACTIONUPDATE event instead of direct draw (with the custom statusbar patch in my mind), actually fix statusbar updates for the simulator version of the usb screen. Increase timeouts a bit too. 2009-08-29 17:41:00 +00:00
screens.h
scrobbler.c
scrobbler.h
settings.c Fix a problem spotted in FS#10543. For F_CHOICE_SETTING, an invalid value would (which may happen if the values changed e.g. due to the statusbar at bottom addition) lead to the correspong 0 value, instead of leaving the setting untouched. Fix it by not calling atoi() for F_CHOICE_SETTING (they don't have int-like values). 2009-08-24 16:12:45 +00:00
settings.h Quickscreen: 4th item 2009-08-29 14:42:03 +00:00
settings_list.c Replace "Party Mode" as Quickscreen top item with "Show Files" to get the old behaviour as default and prevent accidential enabling of party mode. 2009-08-29 19:03:27 +00:00
settings_list.h Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
sound_menu.h
SOURCES Accept FS#10570 by Jason Yu. Adds metadata parsing for NSF files. 2009-08-30 02:53:15 +00:00
status.c
status.h
tagcache.c FS#10080 2009-07-14 13:57:45 +00:00
tagcache.h
tagnavi.config
tagtree.c Fix displaying of the database browser's progress splash so that it works as intended (according to r16432: hide until 0.5s have passed, but never if the disk isn't spinning). 2009-08-20 19:31:09 +00:00
tagtree.h
talk.c FS#10080 2009-07-14 13:57:45 +00:00
talk.h
tdspeed.c Fix red in bootloaders 2009-07-11 17:16:23 +00:00
tdspeed.h Remove an unneeded include 2009-07-11 21:33:45 +00:00
tree.c Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups 2009-08-20 16:47:44 +00:00
tree.h
version.h
voice_thread.c
voice_thread.h

For general information see: docs/README
For API information see: docs/API