summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* FS#12141 by Sean BartellNils Wallménius2011-06-02
| | | | | | | | | | | Some of these were found with http://www.samba.org/junkcode/#findstatic. Changes of note: * The old MDCT has been removed. * Makefile.test files that create test programs for libatrac, libcook, and libffmpegFLAC have been removed, as they don't work. My project will have a replacement that works with all codecs. * I've tried not to remove anything useful. CLIP_TO_15 was removed from libtremor because there's another copy (also commented) in codeclib. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29945 a1c6a512-1295-4272-9138-f99709370657
* FS#11925 - Add a proper system to keep track of the current screen/activity ↵Jonathan Gordon2011-06-01
| | | | | | to make %cs far more useful git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29944 a1c6a512-1295-4272-9138-f99709370657
* Add Sean Bartell to CREDITS.Nils Wallménius2011-06-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29943 a1c6a512-1295-4272-9138-f99709370657
* FS#12140 by Sean Bartell, Make various codec stuff static.Nils Wallménius2011-06-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29942 a1c6a512-1295-4272-9138-f99709370657
* FS#12065 - Fix two regressions introduced with r26192 (FS#10976 /Michael Hohmuth2011-06-01
| | | | | | | | | | | | | | | FS#10992 - make the <Untagged> string translatable): * The translation was done too early: before the tagnavi format clauses were checked. This prevented comparisons against "<Untagged>" when a non-English translation was active. * The code overwrote the buffer containing the constant string "<Untagged>" with the translation. This is neither safe nor necessary: The result pointer simply can be swapped with a pointer to the translation. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29941 a1c6a512-1295-4272-9138-f99709370657
* Android: install codecs as native libs instead of extracting them (FS#12134).Dominik Riebeling2011-05-31
| | | | | | | | | | Codec files are loaded as dynamic libraries. Instead of extracting them from the packaged libmisc.so and therefore having them present twice on the device put them into the apk as native libraries. Decreases the size of the installed Rockbox by the compressed size of the codecs. Also, the extraction on first Rockbox startup gets notably faster since it's less data to extract. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29940 a1c6a512-1295-4272-9138-f99709370657
* Android: ignore swap16 and swap32 from NDK.Dominik Riebeling2011-05-31
| | | | | | | The NDK includes swap16 and swap32 macros, Rockbox as well. Use the Rockbox ones and avoid a macro redefined warning. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29939 a1c6a512-1295-4272-9138-f99709370657
* Add script to create iconset (FS#11982).Dominik Riebeling2011-05-31
| | | | | | | | | | This script is designed to create an icon strip file from svg images. It is intended for use with the Tango icons. The icons as configured in the script should be close to the current Tango icon strip file. Requires inkscape and ImageMagick. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29938 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#12136: Save some binsize in tagtree.c. Thanks to sideral for testing.Nils Wallménius2011-05-31
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29937 a1c6a512-1295-4272-9138-f99709370657
* Rockchip rk27xx utilsMarcin Bukat2011-05-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29936 a1c6a512-1295-4272-9138-f99709370657
* Rockchip rk27xx port initial commit. This is still work in progress.Marcin Bukat2011-05-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29935 a1c6a512-1295-4272-9138-f99709370657
* FS#12139 - Galician translation update by Ismael Castiñeira ÁlvarezBertrik Sikken2011-05-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29934 a1c6a512-1295-4272-9138-f99709370657
* Fix some gcc 4.6 warnings.Dominik Riebeling2011-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29933 a1c6a512-1295-4272-9138-f99709370657
* Theme Editor: add libskin_parser files to clean rule.Dominik Riebeling2011-05-29
| | | | | | | Since those are created below the build folder but unknown to qmake the generated Makefile doesn't remove those. Explicitly add appropriate wildcards. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29932 a1c6a512-1295-4272-9138-f99709370657
* Android: rework r29929 AndroidManifest.xml version handling.Dominik Riebeling2011-05-29
| | | | | | | | Put the generated AndroidManifest.xml into the bin subfolder and remove it from clean list. Avoids problems with cleaning if you're building in the android/ folder. Thanks to kugel for pointing out that people are actually doing that. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29931 a1c6a512-1295-4272-9138-f99709370657
* Fix an implicit declaration warning.Dominik Riebeling2011-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29930 a1c6a512-1295-4272-9138-f99709370657
* Add source tree version into AndroidManifest.xmlDominik Riebeling2011-05-29
| | | | | | | Use the source tree version as versionName string. As result the Android Settings menu will now show that version instead of a rather unhelpful "1.0". git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29929 a1c6a512-1295-4272-9138-f99709370657
* FS#12121 by Sean Bartell, disables -Werror on binutils builds to fix them ↵Nils Wallménius2011-05-27
| | | | | | when using gcc 4.6. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29928 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#12130 - Fix ADX decoding on 64-bit systems by Sean Bartell. Fixes ↵Michael Giacomelli2011-05-26
| | | | | | an incorrect assumption in the ADX decoder that sizeof(int) == 32 when performing fixed point math. Update comments in the fixed point library to correct this. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29927 a1c6a512-1295-4272-9138-f99709370657
* Fix pandora packaging for pre hotfix6 OS versionThomas Jarosch2011-05-25
| | | | | | Push out new build git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29926 a1c6a512-1295-4272-9138-f99709370657
* Fix SDL touch screen handling on the screen edgesThomas Jarosch2011-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29925 a1c6a512-1295-4272-9138-f99709370657
* Fix a problem where hardware keypresses dont reset the idle poweroff timer ↵Jonathan Gordon2011-05-25
| | | | | | on android git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29924 a1c6a512-1295-4272-9138-f99709370657
* Workaround an occasional problem where album art or cuesheets might not be ↵Michael Sevakis2011-05-25
| | | | | | ready by the time the track change event is send which can result in the WPS not immediately being aware that the handles are ready. A better solution will be sought that hopefully doesn't require the additional event. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29923 a1c6a512-1295-4272-9138-f99709370657
* Fix 2 'set but not used' warnings.Nils Wallménius2011-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29922 a1c6a512-1295-4272-9138-f99709370657
* FS#12120. Convert FRACMUL macros into inline functions and fix typecasting ↵Nils Wallménius2011-05-24
| | | | | | for 64 bit platforms so that sims produce the same results as targets. Tweak the cf inline asm to not require an immediate value but add a FORCE_INLINE attribute to one of the cf functions to make sure it gets inlined as that saves both codesize and cycles. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29921 a1c6a512-1295-4272-9138-f99709370657
* Remove next reported 'set but unused' warnings.Andree Buschmann2011-05-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29920 a1c6a512-1295-4272-9138-f99709370657
* Remove residual float operations from sid codec.Andree Buschmann2011-05-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29919 a1c6a512-1295-4272-9138-f99709370657
* Make volume and progresssbar touch regions work with touch timeoutsJonathan Gordon2011-05-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29918 a1c6a512-1295-4272-9138-f99709370657
* Fix yellow.Andree Buschmann2011-05-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29917 a1c6a512-1295-4272-9138-f99709370657
* Fix %Tl 'last touch' tag not accepting the timeoutJonathan Gordon2011-05-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29916 a1c6a512-1295-4272-9138-f99709370657
* Save a large static buffer in sid codec.Andree Buschmann2011-05-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29915 a1c6a512-1295-4272-9138-f99709370657
* S5L870x is fast enough to play spc with gaussian interpolation and echo ↵Andree Buschmann2011-05-22
| | | | | | processing. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29914 a1c6a512-1295-4272-9138-f99709370657
* Submit FS#12115: Use more IRAM in cook codec for several targets. Speeds up ↵Andree Buschmann2011-05-22
| | | | | | PP5022 and MCF5250 by ~3% and S5L87.0x by ~4%. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29913 a1c6a512-1295-4272-9138-f99709370657
* Fix unintentional removal of an if-statement.Andree Buschmann2011-05-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29912 a1c6a512-1295-4272-9138-f99709370657
* Fix various minor spelling issues in the rockbox manual.Bertrik Sikken2011-05-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29911 a1c6a512-1295-4272-9138-f99709370657
* Fix some residual 'defined but not used' warnings by GCC 4.6.0 for ↵Andree Buschmann2011-05-22
| | | | | | touchscreen targets. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29910 a1c6a512-1295-4272-9138-f99709370657
* Manual:r29866 changed the meaning of & and * for touch region actions, ↵Marianne Arnold2011-05-22
| | | | | | update the manual accordingly and add some short explanations. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29909 a1c6a512-1295-4272-9138-f99709370657
* Manual: Fix theme tags section and hence the complete manual for touchscreen ↵Marianne Arnold2011-05-22
| | | | | | targets . The _ needs escaping (but the * doesn't). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29908 a1c6a512-1295-4272-9138-f99709370657
* Update Latvian language, FS#12123 by Mārtiņš ŠimisBertrik Sikken2011-05-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29907 a1c6a512-1295-4272-9138-f99709370657
* Use more IRAM on S5L870x to speed up wmapro by ~2%.Andree Buschmann2011-05-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29906 a1c6a512-1295-4272-9138-f99709370657
* Use more IRAM on S5L870x to speed up wma by ~3%.Andree Buschmann2011-05-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29905 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#12118 - Voice UI has issues talking various issues in menus and in ↵Michael Sevakis2011-05-20
| | | | | | the file browswer. audio_pcmbuf_may_play should check play_status for !=PLAY_PAUSED, not ==PLAY_PLAYING so that PCM may auto-start when voicing out playback state. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29904 a1c6a512-1295-4272-9138-f99709370657
* FS#12122 - Translated the missing string in Romanian. by Sergiu RotaruBertrik Sikken2011-05-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29903 a1c6a512-1295-4272-9138-f99709370657
* Minor manual fix: iPod nano 2G is fast enough to decode ape -c3000.Andree Buschmann2011-05-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29902 a1c6a512-1295-4272-9138-f99709370657
* Manual, audio formats table: remove the \nopt{ipodnano2g} and pull the row ↵Marianne Arnold2011-05-20
| | | | | | and column separators out of the \opts to make the manual build again which broke for targets that would have gotten an impossible additional columns due to this. Needs a check if the result is correct still though. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29901 a1c6a512-1295-4272-9138-f99709370657
* Add AAC to the manuals codec featureset table.Andree Buschmann2011-05-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29900 a1c6a512-1295-4272-9138-f99709370657
* Add a codec featureset overview (for now 'seek', 'resume' and 'gapless') to ↵Andree Buschmann2011-05-19
| | | | | | the manual. Additionally change table formatting and add a note to the SID format. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29899 a1c6a512-1295-4272-9138-f99709370657
* Reduce FRACMUL calls in equalizer.Andree Buschmann2011-05-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29898 a1c6a512-1295-4272-9138-f99709370657
* thumb-cc.py: simplifyRafaël Carré2011-05-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29897 a1c6a512-1295-4272-9138-f99709370657
* A few people have reported problems running the fuzev2 LCD at max ↵Michael Giacomelli2011-05-18
| | | | | | brightness. I don't have one of these players, but as a precaution lets lower the max brightness a bit until someone figures out why. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29896 a1c6a512-1295-4272-9138-f99709370657