rockbox/apps
2005-10-28 23:52:49 +00:00
..
codecs Enabled the FLAC EMAC optimisations. 2005-10-28 22:03:52 +00:00
gui Changed some fn names, also corrected a bug with fonts and made the filetree work like the original one (stop on reaching list limits when pressing button) 2005-10-28 23:52:49 +00:00
lang Synced. 2005-10-10 22:11:14 +00:00
player Keyboard code cleanup & optimisation. Corrected potential overflow problem. 2005-08-24 06:48:39 +00:00
plugins iso-8859-1 police 2005-10-28 13:18:11 +00:00
recorder Patch #1316533 by Alexander Spyridakis: All characters on one virtual keyboard page for targets with large LCD. 2005-10-08 07:12:28 +00:00
tagdb Initial import of tagdb 2005-07-06 11:03:20 +00:00
abrepeat.c Patch #1105616 by Ray Lambert - A-B Repeat for Archos studio/recorder, still not 100% complete, but I wanted to commit it before the 2.5 feature freeze 2005-08-21 23:01:12 +00:00
abrepeat.h Patch #1105616 by Ray Lambert - A-B Repeat for Archos studio/recorder, still not 100% complete, but I wanted to commit it before the 2.5 feature freeze 2005-08-21 23:01:12 +00:00
action.h Henrik Backes patch for WPS and tag database context menus. Tag database context menus still don't work as expected. Hold Play/Select to pop up the menu. 2005-06-23 01:31:26 +00:00
alarm_menu.c Some interface updates and code policing in the alarm setting screen, take 2 2005-07-06 08:30:55 +00:00
alarm_menu.h
applimits.h
bookmark.c Reworked handling of MPEG audio frame & file info: * Fixed frame size calculation for layer 1 (all versions) and layer 2 (V2/V2.5). * Exact frame time (expressed as a fraction) for way more precise playtime calculation at 44100/22050/11025Hz sample frequency. * Exact playtime<->position conversion for CBR also used for resume position. * More compact code, long policy. 2005-09-10 12:28:16 +00:00
bookmark.h Henrik Backes patch for WPS and tag database context menus. Tag database context menus still don't work as expected. Hold Play/Select to pop up the menu. 2005-06-23 01:31:26 +00:00
codecs.c Renamed CONFIG_HWCODEC and MASNONE to the more appropriate CONFIG_CODEC and SWCODEC, respectively. 2005-08-29 21:15:27 +00:00
codecs.h Fixed an #if that would never trigger. Added inclusion of dsp.h and playback.h, since lots of codecs include these when they really shouldn't have to. 2005-10-10 15:54:36 +00:00
database.c Renamed CONFIG_HWCODEC and MASNONE to the more appropriate CONFIG_CODEC and SWCODEC, respectively. 2005-08-29 21:15:27 +00:00
database.h (in theory) more efficient (battery wise) runtime database code. 2005-07-03 21:08:16 +00:00
dbtree.c Initial multi screen support by Kévin Ferrare (Patch #1318081) 2005-10-28 00:00:00 +00:00
dbtree.h Added ID3 database support for individual tracks in the context menu 2005-08-30 07:52:36 +00:00
debug_menu.c Debug menu: Added flash ID reading and ROM dump for H1x0. * #if(def) cleanup 2005-10-10 19:43:07 +00:00
debug_menu.h
dsp.c Two new sections for IRAM usage: .irodata (selectable with the ICONST_ATTR attribute macro), allowing to put 'const' data into IRAM without causing a section type conflict, and .ibss (selectable with the IBSS_ATTR attribute macro) for uninitialised data. * Rockbox core: Adjusted the linker scripts and init code to not include the .ibss section in the binary, it is cleared instead. Saves ~500 bytes on archos and ~30KB on iriver. Codecs and plugins don't handle .ibss in a special way yet. * The init code properly handles empty sections now (except .stack, which should never be empty). * Unified the init code for SH1 and coldfire a bit. 2005-10-19 19:35:24 +00:00
dsp.h DSP_* constants moved from playback.h to dsp.h. 2005-09-21 13:09:10 +00:00
FILES Add gui directory 2005-10-28 13:37:55 +00:00
filetree.c Initial multi screen support by Kévin Ferrare (Patch #1318081) 2005-10-28 00:00:00 +00:00
filetree.h
filetypes.c Fixed broken "open with" in onplay menu. 2005-10-09 13:37:35 +00:00
filetypes.h Optimised new file association handling. Fixed NULL pointer accesses. Const policed. 2005-09-02 16:50:51 +00:00
keyboard.h
language.c removed debug output 2005-02-22 12:55:21 +00:00
language.h Increased max. .lng file size to 8000 bytes to make greek fit again. 2005-10-07 21:59:49 +00:00
logfdisp.c better logf stuff.. 2005-06-30 15:14:08 +00:00
logfdisp.h Added logfdump - that writes the internal logf log to .rockbox/logf.txt 2005-06-01 13:07:37 +00:00
main.c iriver: audio_init really needs to be called after playlist and tree init; delay initial application of buffer margin and crossfade to solve the settings dependency. This should fix the problem with large values in 'Max files in dir browser'. 2005-10-16 08:01:02 +00:00
main_menu.c The power thread now monitors the shutdown process and forces a poweroff if it takes more than 8 seconds. 2005-09-14 09:08:26 +00:00
main_menu.h Patch #1272052 by Henrik Backe - Move credits to a plugin 2005-09-02 05:39:09 +00:00
Makefile Support for a colon-separated path in APPEXTRA 2005-10-27 14:39:00 +00:00
menu.c Adjust menu scrollbar height to the actual text height. Idea taken from patch #1306243 by Stephan Wezel. 2005-10-08 07:38:44 +00:00
menu.h On popular demand, the arrow cursor is reintroduced 2005-09-01 08:04:37 +00:00
metadata.c Seeking support for AC3/A52 files. We assume they are always CBR. 2005-10-22 09:10:51 +00:00
metadata.h Restructured codec type handling a bit. Reduced code size, esp. on archos. 2005-09-01 17:03:09 +00:00
misc.c Core: A graphics framework can now register a hook function to extend the core screendump routine. * Grayscale library: (1) Changed the screendump routine into a hook, and implemented it for H1x0. (2) The planar pixel setting routines now use one register less. Fixes build problem with developer builds (frame pointers enabled) on coldfire. 2005-10-01 10:20:55 +00:00
misc.h Core: A graphics framework can now register a hook function to extend the core screendump routine. * Grayscale library: (1) Changed the screendump routine into a hook, and implemented it for H1x0. (2) The planar pixel setting routines now use one register less. Fixes build problem with developer builds (frame pointers enabled) on coldfire. 2005-10-01 10:20:55 +00:00
onplay.c Added ID3 database support for individual tracks in the context menu 2005-08-30 07:52:36 +00:00
onplay.h Henrik Backes patch for WPS and tag database context menus. Tag database context menus still don't work as expected. Hold Play/Select to pop up the menu. 2005-06-23 01:31:26 +00:00
options.h
pcm_recording.c Proper file numbering in the iriver PCM recording test code 2005-09-14 10:55:45 +00:00
pcmbuf.c Fixed the voice codec when no audio is playing. Now attenuating audio 2005-10-22 21:07:35 +00:00
pcmbuf.h Define empty macros for cpu boosting on targets with no such a feature. 2005-08-28 19:55:30 +00:00
playback.c Fixed the voice codec when no audio is playing. Now attenuating audio 2005-10-22 21:07:35 +00:00
playback.h DSP_* constants moved from playback.h to dsp.h. 2005-09-21 13:09:10 +00:00
playlist.c We reserved two bits instead of one bit for the new skipped attribute. 2005-10-21 07:25:19 +00:00
playlist.h iRiver: Fixed broken items skipping on playlist: Now skipping and 2005-10-21 06:40:45 +00:00
playlist_menu.c Put back the playlist creation options in the main menu 2005-06-24 16:32:30 +00:00
playlist_menu.h
playlist_viewer.c iRiver: Fixed broken items skipping on playlist: Now skipping and 2005-10-21 06:40:45 +00:00
playlist_viewer.h
plugin.c Ooops, players have no screendump. 2005-10-01 10:46:13 +00:00
plugin.h Ooops, players have no screendump. 2005-10-01 10:46:13 +00:00
README
screen_access.c Changed some fn names, also corrected a bug with fonts and made the filetree work like the original one (stop on reaching list limits when pressing button) 2005-10-28 23:52:49 +00:00
screen_access.h Ooops, forgot to commit these 2005-10-28 00:17:15 +00:00
screens.c Oops, forgot to guard a couple of calls to dsp_set_replaygain... 2005-09-24 15:56:33 +00:00
screens.h song rating support.. should probably be moved with browse id3 to a "song options" submenu in the wps context menu... 2005-07-04 22:01:31 +00:00
settings.c Fixed beep setting strings in .cfg files. 2005-10-16 11:15:51 +00:00
settings.h Implemented directory caching. No more waiting for disk to spin up while 2005-10-07 17:38:05 +00:00
settings_menu.c Changed the dircache option to 'Direcory cache: On/Off' * Synced deutsch.lang * Made some standard boolean yes/no settings more compact. 2005-10-08 22:01:42 +00:00
settings_menu.h Move the 'manage settings' option onto the main menu 2005-07-04 09:24:31 +00:00
sleeptimer.c
sleeptimer.h
sound_menu.c Fixed voicing of 'Trigger' menu item 2005-09-27 22:42:37 +00:00
sound_menu.h Patch #868645 by Philipp Pertermann, volume triggered recording for the Archos recording devices 2005-04-04 09:12:12 +00:00
SOURCES Initial multi screen support by Kévin Ferrare (Patch #1318081) 2005-10-28 00:00:00 +00:00
status.c Initial multi screen support by Kévin Ferrare (Patch #1318081) 2005-10-28 00:00:00 +00:00
status.h Initial multi screen support by Kévin Ferrare (Patch #1318081) 2005-10-28 00:00:00 +00:00
talk.c iRiver: Fixed a crash when loading a new configuration file and audio 2005-09-14 16:07:07 +00:00
talk.h Initial voice ui support for software codec platforms. Added also a 2005-08-20 11:13:19 +00:00
tree.c Changed some fn names, also corrected a bug with fonts and made the filetree work like the original one (stop on reaching list limits when pressing button) 2005-10-28 23:52:49 +00:00
tree.h H1x0: Fixed the non-working Stop in the file browser. Ondios: Added the same feature. 2005-10-28 21:57:30 +00:00
version.h
win32.mak
wps-display.c Reworked handling of MPEG audio frame & file info: * Fixed frame size calculation for layer 1 (all versions) and layer 2 (V2/V2.5). * Exact frame time (expressed as a fraction) for way more precise playtime calculation at 44100/22050/11025Hz sample frequency. * Exact playtime<->position conversion for CBR also used for resume position. * More compact code, long policy. 2005-09-10 12:28:16 +00:00
wps-display.h (1) Patch 1231281: Alignment tags for the WPS by Per Holmaeng. Use %al for left align, %ac for centre, %ar for right. It is currently not possible to use more than one %a? tag per WPS line. (2) Lots of tabs removed. 2005-07-05 22:27:54 +00:00
wps.c Major peakmeter rework: * Changed set/get functions for dbfs mode to bool type. * Removed performance setting, leaving (slightly adapted) high performance mode only. * Refresh rate is always 20 Hz now. * Readout doesn't do an extra (hidden) peek, should allow for slightly better clip detection. * Brought back high performance peakmeter for recording. Peakmeter stops hogging the CPU when the disk is spinning; this is enough to avoid the performance problem when saving data. * Optimisations, code cleanup and code policeing. * (iriver) Reduced CPU load of peakmeter by not calculating excessive overlaps. ** Bumped config block version, so save your settings before upgrading. 2005-08-29 20:07:17 +00:00
wps.h Initial multi screen support by Kévin Ferrare (Patch #1318081) 2005-10-28 00:00:00 +00:00

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