rockbox/apps
2007-10-19 09:05:18 +00:00
..
bitmaps Didn't mean to commit that change 2007-10-03 00:45:18 +00:00
codecs APE codec: Further optimised filtering yields 3..4% speedup for -c2000 (now 135% realtime), -c3000 (now 97% realtime) and higher modes. Single 32 bit stores are faster than movem/lea in IRAM. 2007-10-19 07:30:55 +00:00
eqs
gui Remove the "invert scroll" code since it's not used anywhere anymore (and it was broken on color targets with gradients anyway). Closes FS #7875. 2007-10-15 20:42:51 +00:00
keymaps start of a working keymap for mrobe 500 2007-10-19 02:23:11 +00:00
lang Updated italian translation. 2007-10-16 20:39:14 +00:00
menus Voice the recording trigger settings screen. 2007-10-10 01:41:48 +00:00
metadata Fix FS #7976. WMA metadata parser didn't store file size in metadata struct. 2007-10-16 20:21:02 +00:00
player Slight code policing. 2007-10-10 06:02:08 +00:00
plugins Chessbox: ported to c200, also simplify the tile size calculation (thanks to Jens). Just retrieve it from the assigned bmp (same as e.g. Sudoku does), so that there's no need to check for lcd resolution in two different places. Update the manual. 2007-10-19 09:05:18 +00:00
recorder Disable highperf mode in the peakmeter for swcodec targets, as it makes no sense. Improves responsiveness a lot with a peakmeter-enabled wps on targets with slow lcd updates (e.g. G5). Added a comment why highperf mode is needed for MAS targets. 2007-10-16 08:34:51 +00:00
abrepeat.c
abrepeat.h
action.c
action.h
alarm_menu.c FS#7682 by Daniel Dalton - Enable voice in the wakeup alarm screen 2007-10-04 08:56:49 +00:00
alarm_menu.h
applimits.h
audio_path.c
bookmark.c minor update to gui_synclist_do_button() which will hopefully simplify things later. 2007-09-17 10:08:50 +00:00
bookmark.h
codecs.c Commit a subset of the dual core changes that have to do with cache handling, stacks, firmware startup and thread startup. Tested on e200, H10-20GB, iPod Color and 5.5G. Thread function return implemented for all targets. Some changes to plugins to follow shortly. 2007-09-28 10:20:02 +00:00
codecs.h Hide symbols by default on 64 bit sim buildsto avoid clashing, fixes crashing on track change with the same codec, crashing in calculator and text display in midiplay 2007-10-02 09:08:08 +00:00
cuesheet.c minor update to gui_synclist_do_button() which will hopefully simplify things later. 2007-09-17 10:08:50 +00:00
cuesheet.h
debug_menu.c Finally full multicore support for PortalPlayer 502x targets with an eye towards the possibility of other types. All SVN targets the low-lag code to speed up blocking operations. Most files are modified here simple due to a name change to actually support a real event object and a param change to create_thread. Add some use of new features but just sit on things for a bit and leave full integration for later. Work will continue on to address size on sensitive targets and simplify things if possible. Any PP target having problems with SWP can easily be changed to sw corelocks with one #define change in config.h though only PP5020 has shown an issue and seems to work without any difficulties. 2007-10-16 01:25:17 +00:00
debug_menu.h
dsp.c FS #7286. Do correct rounding of final 16 bit samples before sending to DAC, for you golden-eared people. 2007-08-29 14:32:52 +00:00
dsp.h
dsp_arm.S
dsp_asm.h
dsp_cf.S FS #7286. Do correct rounding of final 16 bit samples before sending to DAC, for you golden-eared people. 2007-08-29 14:32:52 +00:00
enc_config.c
enc_config.h
eq.c
eq.h
eq_arm.S iPod 1st..3rd Gen: Nearly halve the cost of software treble/bass (and eq) by putting the filter routine in IRAM. 2007-08-24 21:03:19 +00:00
eq_cf.S
features.txt fix lang problem and little clean up 2007-08-27 17:45:01 +00:00
FILES Add Makefile to FILES and fix comment. 2007-09-27 04:46:53 +00:00
filetree.c
filetree.h
filetypes.c minor update to gui_synclist_do_button() which will hopefully simplify things later. 2007-09-17 10:08:50 +00:00
filetypes.h
keyboard.h
language.c
language.h
logfdisp.c Make logf builds compile again since the clean up of hard-coded paths 2007-09-10 19:29:53 +00:00
logfdisp.h
main.c Unify PCM interface just above the hardware driver level for all targets including the sims. Perform lockout of audio callback when changing states. Weird new playback or recording trouble? Check before and after this revision first though things seem quite sound. 2007-10-06 22:27:27 +00:00
Makefile Make sure that the apps directory exists when building the apps/features file 2007-09-11 07:43:33 +00:00
menu.c Add a voice callback to dynamic menus, along side the text_callback. 2007-10-09 03:48:56 +00:00
menu.h Add a voice callback to dynamic menus, along side the text_callback. 2007-10-09 03:48:56 +00:00
metadata.c get_metadata(): Clear the destination mp3entry to avoid having bogus pointers appear in it. 2007-10-05 16:02:35 +00:00
metadata.h Remove the ID3 tag version priority setting on the grounds of it being pretty pointless. ID3v2 tags are superior to ID3v1 tags, and needs less seeking around to find. 2007-09-19 10:40:55 +00:00
misc.c Make sure that audio_resume() is not called in interrupt context when car adapter mode is enabled. Fixes FS#7304. 2007-10-08 09:09:40 +00:00
misc.h
onplay.c Add a voice callback to dynamic menus, along side the text_callback. 2007-10-09 03:48:56 +00:00
onplay.h
pcmbuf.c Unify PCM interface just above the hardware driver level for all targets including the sims. Perform lockout of audio callback when changing states. Weird new playback or recording trouble? Check before and after this revision first though things seem quite sound. 2007-10-06 22:27:27 +00:00
pcmbuf.h
playback.c Fix a problem that caused stale pcm data to be played subsequent to a 2007-10-18 00:17:15 +00:00
playback.h Thanks to Nico_P, struct track_info can now be internal to playback.c 2007-10-02 07:47:43 +00:00
playlist.c Finally full multicore support for PortalPlayer 502x targets with an eye towards the possibility of other types. All SVN targets the low-lag code to speed up blocking operations. Most files are modified here simple due to a name change to actually support a real event object and a param change to create_thread. Add some use of new features but just sit on things for a bit and leave full integration for later. Work will continue on to address size on sensitive targets and simplify things if possible. Any PP target having problems with SWP can easily be changed to sw corelocks with one #define change in config.h though only PP5020 has shown an issue and seems to work without any difficulties. 2007-10-16 01:25:17 +00:00
playlist.h
playlist_catalog.c minor update to gui_synclist_do_button() which will hopefully simplify things later. 2007-09-17 10:08:50 +00:00
playlist_catalog.h
playlist_menu.h
playlist_viewer.c Playlist viewer move live preview. Closes FS #7968. 2007-10-15 20:34:02 +00:00
playlist_viewer.h
plugin.c Finally full multicore support for PortalPlayer 502x targets with an eye towards the possibility of other types. All SVN targets the low-lag code to speed up blocking operations. Most files are modified here simple due to a name change to actually support a real event object and a param change to create_thread. Add some use of new features but just sit on things for a bit and leave full integration for later. Work will continue on to address size on sensitive targets and simplify things if possible. Any PP target having problems with SWP can easily be changed to sw corelocks with one #define change in config.h though only PP5020 has shown an issue and seems to work without any difficulties. 2007-10-16 01:25:17 +00:00
plugin.h Finally full multicore support for PortalPlayer 502x targets with an eye towards the possibility of other types. All SVN targets the low-lag code to speed up blocking operations. Most files are modified here simple due to a name change to actually support a real event object and a param change to create_thread. Add some use of new features but just sit on things for a bit and leave full integration for later. Work will continue on to address size on sensitive targets and simplify things if possible. Any PP target having problems with SWP can easily be changed to sw corelocks with one #define change in config.h though only PP5020 has shown an issue and seems to work without any difficulties. 2007-10-16 01:25:17 +00:00
README
root_menu.c Fix a bug whereby ACTION_TREE_WPS (GO_TO_PREVIOUS_MUSIC) brings us to the 2007-10-12 04:20:20 +00:00
root_menu.h Fix a bug whereby ACTION_TREE_WPS (GO_TO_PREVIOUS_MUSIC) brings us to the 2007-10-12 04:20:20 +00:00
screen_access.c Remove the "invert scroll" code since it's not used anywhere anymore (and it was broken on color targets with gradients anyway). Closes FS #7875. 2007-10-15 20:42:51 +00:00
screen_access.h Remove the "invert scroll" code since it's not used anywhere anymore (and it was broken on color targets with gradients anyway). Closes FS #7875. 2007-10-15 20:42:51 +00:00
screens.c Finally full multicore support for PortalPlayer 502x targets with an eye towards the possibility of other types. All SVN targets the low-lag code to speed up blocking operations. Most files are modified here simple due to a name change to actually support a real event object and a param change to create_thread. Add some use of new features but just sit on things for a bit and leave full integration for later. Work will continue on to address size on sensitive targets and simplify things if possible. Any PP target having problems with SWP can easily be changed to sw corelocks with one #define change in config.h though only PP5020 has shown an issue and seems to work without any difficulties. 2007-10-16 01:25:17 +00:00
screens.h
scrobbler.c
scrobbler.h
settings.c Name all button light functions and variables consistently starting with buttonlight_ . 2007-10-07 15:02:02 +00:00
settings.h Voice the recording trigger settings screen. 2007-10-10 01:41:48 +00:00
settings_list.c Allow people to waste lots of memory and have 32000 tracks in a single playlist, should they so desire. 2007-10-16 14:01:56 +00:00
settings_list.h Integer setting changes to make all those settings consistant on the target. 2007-10-15 10:33:01 +00:00
sound_menu.h
SOURCES Accept FS#7864 - minor menu cleanup to move theme settings into a new themes menu. patch to update the manual would be welcome :p 2007-10-06 11:47:41 +00:00
status.c
status.h
tagcache.c Take out some NOCACHEBSS_ATTR's that were accidentally left. Put some threading code in IRAM that should be there on PP502x. 2007-10-16 22:00:51 +00:00
tagcache.h
tagnavi.config Get rid of special handling of 'The'; it's 100% language-specific and we need to work towards better handling og 'The' in general. Feel free to include it in your own tagnavi_custom.config if you really need it. 2007-10-17 13:53:48 +00:00
tagtree.c
tagtree.h
talk.c Export shutup() function from talk.c. 2007-10-10 03:12:17 +00:00
talk.h Export shutup() function from talk.c. 2007-10-10 03:12:17 +00:00
tree.c dirbrowse should return a GO_TO_* value, not false on error (fixes the problem where browsing plugins/fons/etc dirs from the menu would put you back n the filebrowser if the folder was empty instead of back in the menu) 2007-10-19 06:11:13 +00:00
tree.h
version.h

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