summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-10-22Fix test_codec plugin that was broken by r18834Nils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18862 a1c6a512-1295-4272-9138-f99709370657
2008-10-22iaudio7: simulatorVitja Makarov
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18861 a1c6a512-1295-4272-9138-f99709370657
2008-10-22fix FS#8124 - pressing STOP after seeking while paused causes playback to ↵Jonathan Gordon
start again for a second or 2 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18860 a1c6a512-1295-4272-9138-f99709370657
2008-10-22Make some local global variables static.Dave Chapman
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18859 a1c6a512-1295-4272-9138-f99709370657
2008-10-21Fix .talk clips on hwcodec targets. mp3info() must not call get_metadata(), ↵Jens Arnold
because this one tries to guess which get_xx_metadata() to call from the extension, and mp3info() is used in talk_file() (extension .talk) on hwcodec. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18855 a1c6a512-1295-4272-9138-f99709370657
2008-10-21Add c200 erase tools. The resulting .bin files can be run from e200toolFrank Gevaerts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18854 a1c6a512-1295-4272-9138-f99709370657
2008-10-21Move the monolithic jpeg viewer into its own subdirectory and split it into ↵Dave Chapman
three (for now - maybe it should be split further) files - jpeg.c (the main plugin/viewer parts), jpeg_decoder.c (the actual decoder) and. for colour targets only, yuv2rgb.c. The intention of this commit is as a first step towards abstracting this viewer into a reusable jpeg decoder and a multi-format image viewer. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18853 a1c6a512-1295-4272-9138-f99709370657
2008-10-20add optional USB mass storage from ramdisk. This can be useful for developmentFrank Gevaerts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18849 a1c6a512-1295-4272-9138-f99709370657
2008-10-20add Logik DAX USB idsFrank Gevaerts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18848 a1c6a512-1295-4272-9138-f99709370657
2008-10-20Using polling instead of interrupts make TX work better, storage worked, but ↵Vitja Makarov
still unstable! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18847 a1c6a512-1295-4272-9138-f99709370657
2008-10-20run this script in your build dir to get a summary table presented with memoryDaniel Stenberg
consumptions used by all the codecs built git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18846 a1c6a512-1295-4272-9138-f99709370657
2008-10-20revert my previous commit since 5.1.20080820 was already committed in r18342 ↵Marcoen Hirschberg
with some useless glyphs removed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18845 a1c6a512-1295-4272-9138-f99709370657
2008-10-20update Unifont to version 5.1.20080820Marcoen Hirschberg
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18844 a1c6a512-1295-4272-9138-f99709370657
2008-10-20Fix title case in a section header, switch a sentence order for recorders to ↵Jens Arnold
be more logical, and add a note about 8MB-modded boxes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18842 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Rewrite of the Archos flashing chapter, bringing it up to date, removing ↵Jens Arnold
longish technical background information (that will go into the wiki only), and explaining a few more target specific details. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18841 a1c6a512-1295-4272-9138-f99709370657
2008-10-19add sansa m200v2 support to mkamsboot.Dominik Wenger
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18840 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Oops, MI4_FORMAT shouldn't be here...Dave Chapman
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18839 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Correct the model numbers used for the Sansa V2 targets - these are ↵Dave Chapman
MODEL_NUMBER in the config-target.h file git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18838 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Correct an error messageDave Chapman
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18837 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Add e200v2 and m200v2 targets. Move the telechips lcd-ssd1815.c (currently ↵Dave Chapman
used by Logik DAX and m200v1 ports) driver up in the target tree and share with the m200v2 - as2525 parts contributed by Rafael Carre. Includes the start (but is still very incomplete) of an LCD driver for the e200v2. m200v2 is not yet fully supported by mkamsboot - that will come soon. Also some minor cleanups for the Clip. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18836 a1c6a512-1295-4272-9138-f99709370657
2008-10-19The GPIO registers are 8-bit, so define them as such.Dave Chapman
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18835 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Codec memory reorganizationNils Wallménius
Based on a patch by Tomasz Malesinski * Merge Codec buffer and Malloc buffer into one large buffer. * The new merged buffer is now 1MB on targets with lots of memory. * Renamed codec_get_memory to codec_get_buffer and made it behave more. like plugin_get_buffer. * Bumped Codec api and min api versions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18834 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Oops forgot to commit part of the changes to the manual when Playback ↵Nils Wallménius
Settings was moved up to the Settings menu (r18799) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18833 a1c6a512-1295-4272-9138-f99709370657
2008-10-19Dont show lines which have no info in the id3 viewer screen.Jonathan Gordon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18832 a1c6a512-1295-4272-9138-f99709370657
2008-10-18revert plugin_api part of r18830, as this was the wrong solution for thoseFrank Gevaerts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18831 a1c6a512-1295-4272-9138-f99709370657
2008-10-18code police : fix some multiply defined variablesFrank Gevaerts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18830 a1c6a512-1295-4272-9138-f99709370657
2008-10-18Remove the audiohw_set_nsorder() function since it is not used, only ↵Peter D'Hoye
implemented on WM8731 and not wanted/used there. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18829 a1c6a512-1295-4272-9138-f99709370657
2008-10-18Accept FS #9491 (Some characters in 18-Adobe-Helvetica are spaced quite ↵Peter D'Hoye
weirdly) by William Poetra Yoga Hadisoeseno git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18828 a1c6a512-1295-4272-9138-f99709370657
2008-10-18Make the meizu m3 load from flash, so interrupts work. More work is needed ↵Frank Gevaerts
to get the m6sl "working" again (patch by Denes Balatoni, FS#9499) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18827 a1c6a512-1295-4272-9138-f99709370657
2008-10-18Accept FS #9496 by Przemysław Hołubowski: disable deemphasis in WM8731. ↵Peter D'Hoye
This fixes FS #9489 (nonlinear frequency response). Verified on H10-5gb git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18826 a1c6a512-1295-4272-9138-f99709370657
2008-10-18rbutil: make release versions local to devices. To allow different releases ↵Dominik Wenger
on different devices. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18825 a1c6a512-1295-4272-9138-f99709370657
2008-10-18Increase UCL blocksize in order to fix 'blocksize too small' errors when ↵Jens Arnold
trying to flash rockbox on fm/v2 recorders. Default blocksize is 256KB and our thinned-out decompressor only supports single-block UCL files. 1MB blocksize should be on the safe side. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18823 a1c6a512-1295-4272-9138-f99709370657
2008-10-16Merge the necessary changes for the new archos firmware flash images back to ↵Jens Arnold
the trunk, including the related optimisations. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18821 a1c6a512-1295-4272-9138-f99709370657
2008-10-16Accept FS#7482 by Klaas Bosteels - return the full path of a file which ↵Jonathan Gordon
doesnt have valid tags yet (and use the end of the filename for the title) instead of before which was only using the filename git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18820 a1c6a512-1295-4272-9138-f99709370657
2008-10-16Accept FS#9480 - centralise and organise the events in the apps/ layer. Jonathan Gordon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18819 a1c6a512-1295-4272-9138-f99709370657
2008-10-15Simplify preprocessor symbols a bit (FS#9457). Thanks to Alexander LevinFrank Gevaerts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18816 a1c6a512-1295-4272-9138-f99709370657
2008-10-15Don't export includes unless needed.Dominik Riebeling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18815 a1c6a512-1295-4272-9138-f99709370657
2008-10-15Split id3.c/h into metadata.c/h and metadata/mp3.c. Updated all references. ↵Björn Stenberg
Moved mp3data.c/h from firmware to apps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18814 a1c6a512-1295-4272-9138-f99709370657
2008-10-15Update rbutil japanese translation (FS#9486 by Yoshihisa Uchida).Dominik Riebeling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18813 a1c6a512-1295-4272-9138-f99709370657
2008-10-14This is my initial commit of the scripts I used to make the 3.0 releaseDaniel Stenberg
files. The README contains some initial docs, plans and current status. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18812 a1c6a512-1295-4272-9138-f99709370657
2008-10-14Update Swedish translation.Magnus Holmgren
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18811 a1c6a512-1295-4272-9138-f99709370657
2008-10-14Make some dependencies on id3.h explicit.Magnus Holmgren
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18810 a1c6a512-1295-4272-9138-f99709370657
2008-10-14Added #include pcm_record.hBjörn Stenberg
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18809 a1c6a512-1295-4272-9138-f99709370657
2008-10-14Red build fix: Moved PCM #defines from pcm_record.h to pcm.h. Added ↵Björn Stenberg
necessary #includes to statusbar.c and s1a0903x01.c. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18808 a1c6a512-1295-4272-9138-f99709370657
2008-10-14Moved pcm_record from firmware to apps. Cleaned up some. Now all code using ↵Björn Stenberg
struct mp3entry is in apps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18807 a1c6a512-1295-4272-9138-f99709370657
2008-10-14telechips usb: not ready for use but, something is working, needs improvement.Vitja Makarov
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18806 a1c6a512-1295-4272-9138-f99709370657
2008-10-14Correct poor assumption on my part that WMA frames are 2048 samples long. ↵Michael Giacomelli
Fixed problems with sample rates < 44.1khz. Fixes FS#9242 and FS#9439. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18805 a1c6a512-1295-4272-9138-f99709370657
2008-10-13Manual: Update the Pegbox screenshots affected by the previous change (r18803)Marianne Arnold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18804 a1c6a512-1295-4272-9138-f99709370657
2008-10-13Pegbox - new graphics for Archos, c200, small H10, Mini, M3 - also cleaning ↵Marianne Arnold
and small tweaks to the rest of the greyscale and monochrome bitmaps. Aspect ratio correct the pieces for the Archos screen (now uses 9x7 tiles) which made it possible to also add the header with statistics). Necessary changes to pegbox.c: don't assume piece height = piece width, prepare a new 'wide' layout for the c200 with the statics at the side. Additional cleanup - make the code more readable by replacing repeatedly used bmpheight_XYZ with defines, splitting some too long lines. Let the 'Start on level' line in the menu actually appear on the Mini's screen. Also rename the greyscale graphics according convention to '...x2.bmp' and set the mime-type more accurately for all pegbox bitmaps. Finally, add Joel Puik, the creator of the original colour graphics to CREDITS. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18803 a1c6a512-1295-4272-9138-f99709370657
2008-10-13Stop scrolling lines when entering or leaving a menu list item. Fixes FS ↵Peter D'Hoye
#9478 (Scrolling lines from (menu) lists are drawn over other screens) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18802 a1c6a512-1295-4272-9138-f99709370657