rockbox/firmware
Nicolas Pennequin 9d4bed7ff0 Album art support. Based on FS#3045, but heavily modified to adapt to MoB and for cleanness.
The cover pictures are loaded from external bitmaps. JPEG and embedded art are not supported. The pictures will only be drawn on the main display. There is no resizing but it is possible to specify the WPS bitmap size in the bitmap names (e.g. cover.100x100.bmp).
The bitmaps are stored in the main buffer and read directly from there. Currently, duplicate bitmaps will simply be present several times in the buffer, but this will be improved.
To enable for a target, #define HAVE_ALBUMART in its config file.
For more information, see the wiki page: http://www.rockbox.org/wiki/AlbumArt.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15572 a1c6a512-1295-4272-9138-f99709370657
2007-11-11 12:29:37 +00:00
..
common More code police... 2007-10-29 00:04:35 +00:00
decompressor
drivers Split radio i2c drivers into target tree where they belong. No changes to binaries produced. 2007-11-10 19:14:01 +00:00
export Album art support. Based on FS#3045, but heavily modified to adapt to MoB and for cleanness. 2007-11-11 12:29:37 +00:00
include Fix some plugins that use NULL instead of -1 when not using a voice id in struct opt_items. Change as many '#define NULL 0' to '#define NULL ((void*)0)' as grep would find - somewehere the former is still hiding it seems. :\ 2007-10-15 07:59:13 +00:00
target change the SCREEN_ROTATE define to be more meaningful, and set the mr500 orientation to landscape by default 2007-11-11 04:48:33 +00:00
test 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
usbstack first part of usbstack patches -> show and use selection of usb stack mode only, if 2007-09-30 12:25:06 +00:00
app.lds Build some more plugins for M:Robe most work, doom builds and runs if you use a hack - need to fix the user timer so that it works properly. 2007-11-02 05:21:34 +00:00
arabjoin.c
arabjoin.h
ata_idle_notify.c
backlight.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
bidi.c code police, no functional changes 2007-07-30 22:33:31 +00:00
bitswap.S
boot.lds Initial work on a port to the Logik DAX 1GB MP3/DAB player. The bootloader build compiles and runs (but only displays some debugging info), and the LCD and ADC drivers are working. Two different bootloader builds are possible: 1) The default build is just a test application for uploading to the device via tcctool; 2) Adding -DTCCBOOT to EXTRA_DEFINES in the build directory Makefile will compile the bootloader so that it can be appended to the end of the original firmware and installed on the device, dual-booting. This commit also includes some work by Hein-Pieter van Braam on a port to the iAudio 7, but that doesn't build yet. A large part of these ports will be generic to all TCC77x devices - see the TelechipsInfo wiki page for some other devices with this CPU. NOTE: Compiling these builds requires an arm-elf-gcc with armv5 support - the current version of rockboxdev.sh compiles such a gcc. 2007-10-28 11:08:10 +00:00
buffer.c
COPYING
debug.c
descramble.S
eeprom_settings.c
enc_base.c
FILES Add gigabeat S files to FILES and sort entries under target/arm 2007-11-11 01:17:39 +00:00
font.c Fix 64 bit simulator warning. 2007-10-02 17:04:56 +00:00
font_cache.c
general.c Add some CACHEALIGN_* macros and a helper function to assist in aligning data and buffers on PortalPlayer processors to cache line boundaries. They're noops when PROC_NEED_CACHEALIGN isn't defined. Go safe and increase the value to 32 since I'm not sure yet if 16 is sufficient - changing that is a one-liner. Add helper to plugin API which will be needed shortly. 2007-11-08 05:17:20 +00:00
hangul.c
hotswap.c Accept FS#7134 - Sansa: external sd card support by Antonius Hellmann with some tweaks. All testers have given the green light. (Now for the RED ?? ;). 2007-06-30 02:08:27 +00:00
id3.c Turn the DEBUGF messages into logf in the ID3 parser, so that by default they don't get shown. 2007-10-29 18:02:41 +00:00
kernel.c Fix FS#8052 - kernel.c compilation errors when compiling for debug. Just some minor typos that got in with last minute SW corelock changes. 2007-10-30 20:36:23 +00:00
logf.c
lru.c
Makefile
mp3_playback.c compile talk.c on hwcodec sim. it wont actually talk though 2007-11-07 09:28:07 +00:00
mp3data.c
mpeg.c make initialisation of buffer/unbuffer call backs consistent with FS#6639 2007-11-04 23:58:23 +00:00
panic.c
pcm.c Still on the post-big-commit policing. Correct a function call order. Comment a couple things. 2007-10-07 23:19:09 +00:00
pcm_record.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
pcm_sampr.c
powermgmt.c No need to have this variable for targets that don't use it 2007-11-08 15:37:39 +00:00
profile.c
README
replaygain.c Remove some debug code. Remove some unnecessary checks. 2007-08-25 10:56:22 +00:00
rolo.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
rom.lds
scroll_engine.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
sound.c Fix warnings by being stricter about declaring volume min/max 2007-10-13 23:29:49 +00:00
SOURCES Fix the Gigabeat red and move it's hw specific code into the target tree 2007-11-10 23:13:27 +00:00
system.c Fixed warnings when logf is enabled. 2007-10-21 11:02:51 +00:00
thread.c Initial work on a port to the Logik DAX 1GB MP3/DAB player. The bootloader build compiles and runs (but only displays some debugging info), and the LCD and ADC drivers are working. Two different bootloader builds are possible: 1) The default build is just a test application for uploading to the device via tcctool; 2) Adding -DTCCBOOT to EXTRA_DEFINES in the build directory Makefile will compile the bootloader so that it can be appended to the end of the original firmware and installed on the device, dual-booting. This commit also includes some work by Hein-Pieter van Braam on a port to the iAudio 7, but that doesn't build yet. A large part of these ports will be generic to all TCC77x devices - see the TelechipsInfo wiki page for some other devices with this CPU. NOTE: Compiling these builds requires an arm-elf-gcc with armv5 support - the current version of rockboxdev.sh compiles such a gcc. 2007-10-28 11:08:10 +00:00
timer.c Fix empty commit: Add grayscale support for ARM in vertical packing format. 2007-09-22 23:37:58 +00:00
tuner.c e200: Tuner driver needs to yield alot and also be mutexed. FM debug screen got broken again and was ignoring cancellation and not drawing the lines. 2007-07-14 22:00:50 +00:00
usb.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
usb_serial.c

See docs/README