.. |
bitmaps
|
Start of work on a port to the Archos 'AV300' (AV320/340/380) - a working UI simulator (but with a dummy background image for now) and the beginnings of the target-specific firmare code. Port is temporarily using a 2bpp LCD buffer format - the AV300 has a 320x240 colour (YCbCr-based) LCD which will need a new framebuffer format and drawing routines, but the LCD is also capable of various paletted bitmap modes, one of which has an identical framebuffer format to the greyscale ipods. Buttons (and hence the button mappings) are identical to the Archos Recorder, with the exception that the PLAY button on the Recorder is replaced by pressing the joystick on the AV300 (which I call BUTTON_SELECT). The initial port will begin by being strictly HWCODEC, but will evolve to be a hybrid SWCODEC/HWCODEC platform - it has a MAS3587F but also a main CPU (54MHz arm7tdmi plus DSP) capable of software decoding of at least some formats.
|
2007-01-14 13:48:09 +00:00 |
codecs
|
SWCODEC: Fix the problem of replaygain not being applied unless the menu is entered. Make all codecs set the replay gain or else formats that do not have replaygain will not set the gain back to default if a file with gain applied proceeded them.
|
2007-02-26 17:15:04 +00:00 |
eqs
|
Add some presets for the equalizer. Includes a Default preset that resets everything. From FS#6113, thanks to David Quesada.
|
2006-10-12 20:48:40 +00:00 |
gui
|
Remove unnecessary function call.
|
2007-02-24 11:49:52 +00:00 |
keymaps
|
Convert the radio menus to the new system.
|
2007-02-27 09:06:30 +00:00 |
lang
|
Convert the radio menus to the new system.
|
2007-02-27 09:06:30 +00:00 |
menus
|
Add software based bass/treble controls for targets which have no such functionality in hardware (currently only X5). They can also be used on any other SWCODEC target by adding #define HAVE_SW_TONE_CONTROLS in the relevant config-*.h file. Also remove some now unneeded zero checks when using get_replaygain_int(). Comments on sound quality are welcome as some parameters can still be fine-tuned.
|
2007-02-26 00:41:26 +00:00 |
player
|
|
|
plugins
|
Make it easier to quit Snake2 (much easier on iPods at least) by allowing user to quit from Pause screen.
|
2007-02-21 23:00:18 +00:00 |
recorder
|
Convert the radio menus to the new system.
|
2007-02-27 09:06:30 +00:00 |
abrepeat.c
|
Respect the progressbar length when drawing AB markers. Fixes FS#6463. Also fix a function name typo.
|
2006-12-29 19:17:03 +00:00 |
abrepeat.h
|
Respect the progressbar length when drawing AB markers. Fixes FS#6463. Also fix a function name typo.
|
2006-12-29 19:17:03 +00:00 |
action.c
|
Action code: Made all private functions & variables static. Better module separation, and it saves a bit of binary size. * Added a few missing 'const's.
|
2006-12-12 07:55:17 +00:00 |
action.h
|
beginning of the new menu system. This commit shouldnt break anything,
|
2007-02-08 04:33:41 +00:00 |
alarm_menu.c
|
Fix the left margin in the alarm menu
|
2007-02-20 12:47:00 +00:00 |
alarm_menu.h
|
|
|
applimits.h
|
|
|
bookmark.c
|
Fix a couple of error handling bugs. Some minor code simplification.
|
2007-02-20 21:08:54 +00:00 |
bookmark.h
|
Finally, the new button action system is here, thanks to Jonathan Gordon. Some button mappings have changed and other things may break. Comments should go to the forum, http://forums.rockbox.org/index.php?topic=5829.0 or the mailing list.
|
2006-08-15 12:27:07 +00:00 |
codecs.c
|
Fix resampling clicking as much as possible at the moment. 1) Upsampling clicked because of size inaccuracies returned by DSP. Fix by simplifying audio system to use per-channel sample count from codec to pcm buffer. 2) Downsampling affected by 1) and was often starting passed the end of the data when not enough was available to generate an output sample. Fix by clamping input range to last sample in buffer and using the last sample value in the buffer. A perfect fix will require a double buffering scheme on the resampler to sufficient data during small data transients on both ends at all times of the down ratio on input and the up ratio on output.
|
2007-02-07 00:51:50 +00:00 |
codecs.h
|
SWCODEC: Dsp speed optimizations. Changes for more modularity. Removal of some usless stuff. Some assembly routines for Coldfire with speed in mind over size for the outputs but the channel modes remain compact. Miscellaneous coldfire asm updates to accomodate the changes. Codec API structure version has to increase so do a full update.
|
2007-02-24 17:06:36 +00:00 |
cuesheet.c
|
Make a couple of private functions 'static'
|
2007-02-16 18:48:36 +00:00 |
cuesheet.h
|
Cuesheet support by Jonathan Gordon and me (FS #6460).
|
2007-02-14 14:40:24 +00:00 |
debug_menu.c
|
Ooops #2 - fix sim builds. The dbg_save_roms function will work on all PP targets apart from the Sansa. Using CPU_PP prevents attempted compilation in the sim.
|
2007-02-23 23:44:59 +00:00 |
debug_menu.h
|
More static'ing, and a few fixes resulting from that.
|
2006-12-12 22:22:21 +00:00 |
dsp.c
|
SWCODEC: Fix the problem of replaygain not being applied unless the menu is entered. Make all codecs set the replay gain or else formats that do not have replaygain will not set the gain back to default if a file with gain applied proceeded them.
|
2007-02-26 17:15:04 +00:00 |
dsp.h
|
Add software based bass/treble controls for targets which have no such functionality in hardware (currently only X5). They can also be used on any other SWCODEC target by adding #define HAVE_SW_TONE_CONTROLS in the relevant config-*.h file. Also remove some now unneeded zero checks when using get_replaygain_int(). Comments on sound quality are welcome as some parameters can still be fine-tuned.
|
2007-02-26 00:41:26 +00:00 |
dsp_arm.S
|
Assembler optimised crossfeed routine for ARM. Performance improvement is more than double. Should work fine, but watch your ears nevertheless.
|
2006-08-16 12:38:49 +00:00 |
dsp_asm.h
|
SWCODEC: Dsp speed optimizations. Changes for more modularity. Removal of some usless stuff. Some assembly routines for Coldfire with speed in mind over size for the outputs but the channel modes remain compact. Miscellaneous coldfire asm updates to accomodate the changes. Codec API structure version has to increase so do a full update.
|
2007-02-24 17:06:36 +00:00 |
dsp_cf.S
|
Hrm. move.q? I want moveq.l :)
|
2007-02-24 17:34:18 +00:00 |
enc_config.c
|
Recording Menus: Make statusbar update correctly when exiting an encoder setting.
|
2007-02-10 07:08:25 +00:00 |
enc_config.h
|
Forgot to use cvs add on a few new files in the fresh checkout I used. woops.
|
2006-11-06 18:18:05 +00:00 |
eq.c
|
Wrap filter_bishelf_coefs with HAVE_SW_TONE_CONTROLS to not waste bytes on targets that don't use it.
|
2007-02-26 00:58:07 +00:00 |
eq.h
|
Add software based bass/treble controls for targets which have no such functionality in hardware (currently only X5). They can also be used on any other SWCODEC target by adding #define HAVE_SW_TONE_CONTROLS in the relevant config-*.h file. Also remove some now unneeded zero checks when using get_replaygain_int(). Comments on sound quality are welcome as some parameters can still be fine-tuned.
|
2007-02-26 00:41:26 +00:00 |
eq_arm.S
|
Commit optional code for high-precision EQ which will almost certainly not make a difference on 16 bit output targets.
|
2007-02-22 13:55:49 +00:00 |
eq_cf.S
|
Fix comment.
|
2007-02-22 17:22:01 +00:00 |
FILES
|
Add missing entries to FILES to hopefully get everything included in the tarballs, should close FS #6660
|
2007-02-14 14:58:19 +00:00 |
filetree.c
|
Explicilty set CONFIG_ defines to 0 which are not used.. because doing
|
2007-02-18 02:04:47 +00:00 |
filetree.h
|
Fix an occasional crash when using .talk MP3 files for directories in ID3 browsing mode. Spotted and fixed by Steve Bavin (plus minor change by me)
|
2006-07-05 23:33:20 +00:00 |
filetypes.c
|
More static'ing, and a few fixes resulting from that.
|
2006-12-12 22:22:21 +00:00 |
filetypes.h
|
|
|
keyboard.h
|
|
|
language.c
|
|
|
language.h
|
Greek language update by Ioannis Koutoulakis - needs an increase of the language buffer once again (21kB) to fit in memory
|
2006-10-30 23:26:09 +00:00 |
logfdisp.c
|
Finally, the new button action system is here, thanks to Jonathan Gordon. Some button mappings have changed and other things may break. Comments should go to the forum, http://forums.rockbox.org/index.php?topic=5829.0 or the mailing list.
|
2006-08-15 12:27:07 +00:00 |
logfdisp.h
|
|
|
main.c
|
CONFIG_CHARGING
|
2007-02-18 05:32:06 +00:00 |
main_menu.c
|
Fix remaining CONFIG_TUNER checks.
|
2007-02-18 08:46:12 +00:00 |
main_menu.h
|
|
|
Makefile
|
Enable ROM file generation for H120/H140.
|
2007-01-08 18:21:12 +00:00 |
menu.c
|
Convert the radio menus to the new system.
|
2007-02-27 09:06:30 +00:00 |
menu.h
|
Convert the EQ menus
|
2007-02-19 02:14:51 +00:00 |
metadata.c
|
Fixed the incorrect APE header format define cause parsing to fail.
|
2007-02-15 19:08:21 +00:00 |
metadata.h
|
|
|
misc.c
|
Introduced LCD_FBHEIGHT in addition to the already existing LCD_FBWIDTH to ease framebuffer handling a bit. Added equivalent definitions for the remote LCD.
|
2007-02-20 19:31:34 +00:00 |
misc.h
|
A few more bookmark code tweaks. Also improves how the bookmark selection screen is displayed on Archos players.
|
2007-02-17 13:36:44 +00:00 |
onplay.c
|
Convert the EQ menus
|
2007-02-19 02:14:51 +00:00 |
onplay.h
|
|
|
options.h
|
|
|
pcmbuf.c
|
Fix resampling clicking as much as possible at the moment. 1) Upsampling clicked because of size inaccuracies returned by DSP. Fix by simplifying audio system to use per-channel sample count from codec to pcm buffer. 2) Downsampling affected by 1) and was often starting passed the end of the data when not enough was available to generate an output sample. Fix by clamping input range to last sample in buffer and using the last sample value in the buffer. A perfect fix will require a double buffering scheme on the resampler to sufficient data during small data transients on both ends at all times of the down ratio on input and the up ratio on output.
|
2007-02-07 00:51:50 +00:00 |
pcmbuf.h
|
Fix resampling clicking as much as possible at the moment. 1) Upsampling clicked because of size inaccuracies returned by DSP. Fix by simplifying audio system to use per-channel sample count from codec to pcm buffer. 2) Downsampling affected by 1) and was often starting passed the end of the data when not enough was available to generate an output sample. Fix by clamping input range to last sample in buffer and using the last sample value in the buffer. A perfect fix will require a double buffering scheme on the resampler to sufficient data during small data transients on both ends at all times of the down ratio on input and the up ratio on output.
|
2007-02-07 00:51:50 +00:00 |
playback.c
|
SWCODEC: Dsp speed optimizations. Changes for more modularity. Removal of some usless stuff. Some assembly routines for Coldfire with speed in mind over size for the outputs but the channel modes remain compact. Miscellaneous coldfire asm updates to accomodate the changes. Codec API structure version has to increase so do a full update.
|
2007-02-24 17:06:36 +00:00 |
playback.h
|
A bit more voice simplification/MAS fixage (FS#6241). Also clear any buffered voice when playback is started.
|
2006-10-25 08:54:25 +00:00 |
playlist.c
|
#if => #ifdef
|
2007-02-17 23:07:39 +00:00 |
playlist.h
|
Accept FS#6464 by Chris Taylor. Adds a "Play Next" playlist insertion
|
2006-12-26 13:31:04 +00:00 |
playlist_catalog.c
|
Removed unused 'mode' parameter from mkdir() for consistency with creat().
|
2007-02-03 10:28:55 +00:00 |
playlist_catalog.h
|
Patch #5179 by Sebastian Henriksen and Hardeep Sidhu - Playlist catalog
|
2006-07-18 13:54:12 +00:00 |
playlist_menu.h
|
|
|
playlist_viewer.c
|
Remove useless define
|
2007-02-23 22:18:09 +00:00 |
playlist_viewer.h
|
|
|
plugin.c
|
Make private functions static. Remove some functions from the plugin api as they weren't used in any plugins and could then be declared static.
|
2007-02-23 21:52:45 +00:00 |
plugin.h
|
Make private functions static. Remove some functions from the plugin api as they weren't used in any plugins and could then be declared static.
|
2007-02-23 21:52:45 +00:00 |
README
|
|
|
screen_access.c
|
Do the CONFIG_LED define
|
2007-02-18 05:07:19 +00:00 |
screen_access.h
|
Do the CONFIG_LED define
|
2007-02-18 05:07:19 +00:00 |
screens.c
|
SWCODEC: Dsp speed optimizations. Changes for more modularity. Removal of some usless stuff. Some assembly routines for Coldfire with speed in mind over size for the outputs but the channel modes remain compact. Miscellaneous coldfire asm updates to accomodate the changes. Codec API structure version has to increase so do a full update.
|
2007-02-24 17:06:36 +00:00 |
screens.h
|
Comment out an unused function
|
2007-02-01 20:52:36 +00:00 |
scrobbler.c
|
Accept FS#6644 - use the ata_idle_nofity stuff for the last.fm logging
|
2007-02-11 05:34:14 +00:00 |
scrobbler.h
|
Patch #5166 by Robert Keevil - Last.fm logging
|
2006-10-19 09:42:58 +00:00 |
settings.c
|
Add software based bass/treble controls for targets which have no such functionality in hardware (currently only X5). They can also be used on any other SWCODEC target by adding #define HAVE_SW_TONE_CONTROLS in the relevant config-*.h file. Also remove some now unneeded zero checks when using get_replaygain_int(). Comments on sound quality are welcome as some parameters can still be fine-tuned.
|
2007-02-26 00:41:26 +00:00 |
settings.h
|
Fix CONFIG_BACKLIGHT warnings.
|
2007-02-18 10:07:27 +00:00 |
settings_list.c
|
Convert the radio menus to the new system.
|
2007-02-27 09:06:30 +00:00 |
settings_list.h
|
Flip the order of some of the setting screens. (If any more are
|
2007-02-19 03:15:48 +00:00 |
settings_menu.h
|
|
|
sound_menu.c
|
Convert the EQ menus
|
2007-02-19 02:14:51 +00:00 |
sound_menu.h
|
beginning of the new menu system. This commit shouldnt break anything,
|
2007-02-08 04:33:41 +00:00 |
SOURCES
|
Convert the EQ menus
|
2007-02-19 02:14:51 +00:00 |
status.c
|
Explicilty set CONFIG_ defines to 0 which are not used.. because doing
|
2007-02-18 02:04:47 +00:00 |
status.h
|
Work-in-progress rework of charging status reading & display: * Changed several charging related HAVE_* macros into one multi-value CONFIG_CHARGING. * Always use proper macros for charging states. * Battery symbol charging animation now starts from current level on all targets with charging. Two-colour animation kept for non-b&w targets. Round down fill level while charging as before, but round to nearest pixel value for discharging on all targets. * Charging anim fixed on player. * Some code cleanup.
|
2006-06-06 22:23:52 +00:00 |
tagcache.c
|
Cleaned up code a bit, fixed possible bug during committing numeric indices and made code more fault tolerant. Added a new numeric tag making it possible to list recently added tracks. Export your DB.
|
2007-02-25 20:41:51 +00:00 |
tagcache.h
|
Cleaned up code a bit, fixed possible bug during committing numeric indices and made code more fault tolerant. Added a new numeric tag making it possible to list recently added tracks. Export your DB.
|
2007-02-25 20:41:51 +00:00 |
tagnavi.config
|
Cleaned up code a bit, fixed possible bug during committing numeric indices and made code more fault tolerant. Added a new numeric tag making it possible to list recently added tracks. Export your DB.
|
2007-02-25 20:41:51 +00:00 |
tagtree.c
|
Cleaned up code a bit, fixed possible bug during committing numeric indices and made code more fault tolerant. Added a new numeric tag making it possible to list recently added tracks. Export your DB.
|
2007-02-25 20:41:51 +00:00 |
tagtree.h
|
ifdef all the tagcache code, allows rombox to be compiled again, Thanks Austin Appel
|
2006-10-25 10:17:57 +00:00 |
talk.c
|
Start using the new endian conversion system outside tagcache also to simplify code.
|
2007-02-14 19:20:13 +00:00 |
talk.h
|
Next round of static'ing and related fixes.
|
2006-12-25 14:01:47 +00:00 |
tree.c
|
CONFIG_CHARGING
|
2007-02-18 05:32:06 +00:00 |
tree.h
|
Cuesheet support by Jonathan Gordon and me (FS #6460).
|
2007-02-14 14:40:24 +00:00 |
version.h
|
|
|