summaryrefslogtreecommitdiff
path: root/apps (follow)
Commit message (Collapse)AuthorAge
...
* Add "file size" to the track information screen of WPS.Mustapha Senhaji2010-12-24
| | | | | | | Reuse "LANG_FILE_SIZE" from recording settings, with now a unified "LANG_FILESIZE" string. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28886 a1c6a512-1295-4272-9138-f99709370657
* RaaA: Improve tagcache search to make the database built.Thomas Martitz2010-12-23
| | | | | | | | | | First, it add the ability to tagcache to walk through multiple search roots. Second, it adds symlinks targets to the search roots if they're are not inside any of the current search roots, otherwise the symlink is ignored (unless it's a file). The default search root is still /, so no search root will be actually added. But the tagcache now isn't trapped by recursive symlinks anymore and successfully builds, and it's prepared for a future music directory setting. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28884 a1c6a512-1295-4272-9138-f99709370657
* Fix a typo in commentAlexander Levin2010-12-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28881 a1c6a512-1295-4272-9138-f99709370657
* SPC Codec: Was broken on ARMv6 since EABI switch and somehow I failed to ↵Michael Sevakis2010-12-23
| | | | | | notice in the first place (and so did eveyone else it seems :). Some early-clobber constraints were needed on inline assemebly operands. In some places, they aren't necessary where they were used, so remove those. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28880 a1c6a512-1295-4272-9138-f99709370657
* Disktidy plugin: add .Spotlight-V100 directoriesRobert Menes2010-12-23
| | | | | | | | (created by Mac OS X) to the list of default files and directories to be cleaned. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28879 a1c6a512-1295-4272-9138-f99709370657
* Redo raising the priority of the codec (and voice) thread to fix audio ↵Thomas Martitz2010-12-22
| | | | | | | | | dropouts under heavy UI load, such as during kinetic scrolling or pictureflow. Now it'll raise the priority gradually when under 70% and gradually decrease again in the same way. Previously it raised gradually when under 17% (way too late) and went straight back to default priority above 17% again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28877 a1c6a512-1295-4272-9138-f99709370657
* MPEGPlayer: Some UI tweaking and bugfixingMichael Sevakis2010-12-22
| | | | | | | | | | * Allow skip-to-beginning in single-play mode; there is no 3-second delay in that case. * Properly handle and keep track of pauses caused by headphone removal. * Improve skipping over bad files - search in skip direction and allow it to be ended with the stop key. * Add the system message processing done elsewhere to all button queue waits. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28875 a1c6a512-1295-4272-9138-f99709370657
* libwavpack: put some lookup tables in iram, speedup of 8-10% on coldfire (h300).Nils Wallménius2010-12-21
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28873 a1c6a512-1295-4272-9138-f99709370657
* aac: put two local structs on the stack as they are small and the codec uses ↵Nils Wallménius2010-12-21
| | | | | | little stack anyway ( < 20% on h300) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28872 a1c6a512-1295-4272-9138-f99709370657
* Fix different enum comparison warning when building with gcc 4.5Nils Wallménius2010-12-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28866 a1c6a512-1295-4272-9138-f99709370657
* Fix problem with frequency increasing or preset advancing with long press of ↵Michael Chicoine2010-12-20
| | | | | | the down button while in FM Radio git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28864 a1c6a512-1295-4272-9138-f99709370657
* MPEGPlayer: Fix a bug where seeking a stream into the same frame more than ↵Michael Sevakis2010-12-20
| | | | | | once in a row causes it to report itself at the end in error; to fix it, pause streams rather than stopping them if the playback isn't stopped. Also, add one check so the engine can at rewind unseekable files to time 0. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28862 a1c6a512-1295-4272-9138-f99709370657
* Update the Czech translation.Mustapha Senhaji2010-12-19
| | | | | | | | Flyspray: FS#11815 Author: Marek Salaba git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28856 a1c6a512-1295-4272-9138-f99709370657
* MPEGPlayer: Move some code that's probably better situated in the stream ↵Michael Sevakis2010-12-19
| | | | | | manager rather than the parser. Fix visibility checking in video out. Extra message sending for new stream isn't needed; just do full decoder sequence reset when requesting dimensions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28855 a1c6a512-1295-4272-9138-f99709370657
* MPEGPlayer: Skip to next file when there is a problem with a video file in ↵Michael Sevakis2010-12-19
| | | | | | all-play mode, otherwise exit as usual. Only consider failures such as engine init issues or no file to view to be a plugin error but not problems with the video files themselves; the user is adequately informed already. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28854 a1c6a512-1295-4272-9138-f99709370657
* MPEGPlayer: Fix leakage of file decriptors if file wasn't accepted by ↵Michael Sevakis2010-12-19
| | | | | | playback engine-- code is now getting tested that couldn't be before. Also reset parser in stream init when it doesn't like the file. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28853 a1c6a512-1295-4272-9138-f99709370657
* Fix problem with volume decreasing when pressing the menu button while in FM ↵Michael Chicoine2010-12-19
| | | | | | Radio git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28851 a1c6a512-1295-4272-9138-f99709370657
* MPEGPlayer playlist should as well support all viewer-handled file ↵Michael Sevakis2010-12-18
| | | | | | extensions...indeed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28850 a1c6a512-1295-4272-9138-f99709370657
* Stay in file browser (do not go to WPS) after adding a track to the playlist ↵Alexander Levin2010-12-17
| | | | | | via the hotkey (FS#11344 by Ryan Sawhill) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28847 a1c6a512-1295-4272-9138-f99709370657
* Avoid an obvious stall on everything newer then arm7tdmi. Note: this can ↵Michael Giacomelli2010-12-16
| | | | | | probably be made a lot faster on newer arm targets. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28842 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#11810 by Alexander Meshcheryakov. Boosts the CPU and limits LCD ↵Michael Giacomelli2010-12-16
| | | | | | update rate while recursively scanning files in the properties plugin, improving its scan speed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28841 a1c6a512-1295-4272-9138-f99709370657
* Add a newline to a debugf printing an error.Nils Wallménius2010-12-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28838 a1c6a512-1295-4272-9138-f99709370657
* Rename the NO_CONTEXT flag to NO_CONTEXT_MENU so that the name more clearly ↵Alexander Levin2010-12-15
| | | | | | conveys what the flag does git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28837 a1c6a512-1295-4272-9138-f99709370657
* remaining of FS#11777. Use rockbox_browse() to display playlists in Playlist ↵Teruaki Kawashima2010-12-15
| | | | | | Catalog. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28836 a1c6a512-1295-4272-9138-f99709370657
* set the sampling rate back to default on closing, Michael Stummvoll2010-12-15
| | | | | | | even it is not a clean shutdown (cleanshut setted) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28835 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#11799 by Alexander Meshcheryakov. Improves the text viewer plugin ↵Michael Giacomelli2010-12-14
| | | | | | to write to the disk less often, and correct several minor bugs. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28833 a1c6a512-1295-4272-9138-f99709370657
* FS#11777: enhancement for rockbox_browse()Teruaki Kawashima2010-12-14
| | | | | | | | | | * Add struct browse_context to be passed to rockbox_browse. * Show proper title when selecting e.g. .wps file or .sbs file from the settings menu. * Add select only mode to rockbox_browse(). when a file is selected, it's path is stored to buffer and the browser exits without 'playing' the file. this will allow to use the browser in more places to select file including plugins. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28831 a1c6a512-1295-4272-9138-f99709370657
* Romanian translation update.Mustapha Senhaji2010-12-14
| | | | | | | | Flyspray: FS#11691 Author: Cristina Talpiga & Ştefan Moisei git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28829 a1c6a512-1295-4272-9138-f99709370657
* HD300 - lang strings for alarm screenMarcin Bukat2010-12-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28823 a1c6a512-1295-4272-9138-f99709370657
* Make the midiplugin's out of memory error more obvious to people who don't ↵Michael Giacomelli2010-12-13
| | | | | | know what malloc is. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28822 a1c6a512-1295-4272-9138-f99709370657
* Revert tab police as it makes merging upstream changes more annoying and ↵Nils Wallménius2010-12-12
| | | | | | messed up indentation in some places. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28818 a1c6a512-1295-4272-9138-f99709370657
* Tab police.Andree Buschmann2010-12-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28817 a1c6a512-1295-4272-9138-f99709370657
* FS#11802 by Li Jie fixing a typo in the doom buttonmap for SA9200.Nils Wallménius2010-12-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28816 a1c6a512-1295-4272-9138-f99709370657
* Add MikMod plugin, ported by Jason Yu, with some minor work by Craig Mann ↵Frank Gevaerts2010-12-12
| | | | | | and William Peters (FS#8806) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28810 a1c6a512-1295-4272-9138-f99709370657
* Punctuation consistency, revert part of r27363.Mustapha Senhaji2010-12-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28805 a1c6a512-1295-4272-9138-f99709370657
* Merge the translation of too strings for a generic use.Mustapha Senhaji2010-12-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28804 a1c6a512-1295-4272-9138-f99709370657
* Update the list of targets used on english.lang file.Mustapha Senhaji2010-12-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28803 a1c6a512-1295-4272-9138-f99709370657
* Commit small piece of FS#11748 by Michael Hohmuth. Disables database ↵Michael Giacomelli2010-12-11
| | | | | | specific fields if the database is not compiled in. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28790 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#11776 by Jonas Haggqvist. Enables option to log building the ↵Michael Giacomelli2010-12-11
| | | | | | database in order to trouble shoot crashes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28789 a1c6a512-1295-4272-9138-f99709370657
* Correct mistake in the RealMedia parser that prevented rejecting files with ↵Michael Giacomelli2010-12-11
| | | | | | unsupported codecs. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28788 a1c6a512-1295-4272-9138-f99709370657
* Oops, unintended change slipped in.Thomas Martitz2010-12-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28786 a1c6a512-1295-4272-9138-f99709370657
* Android: Rework notification and change icon sizes to better meet the ↵Thomas Martitz2010-12-10
| | | | | | | | | | systems' standard. The notification now announces the new track on track change, and the the area in the scrolled down notification area shows track infos (title, artist, album). Someone should check if it looks good on hdpi and ldpi screens as I can't verify it right now (emulator crashes). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28785 a1c6a512-1295-4272-9138-f99709370657
* Base voice thread stack size on DEFAULT_STACK_SIZE, it's otherwise likely to ↵Thomas Martitz2010-12-10
| | | | | | overflow on app targets. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28783 a1c6a512-1295-4272-9138-f99709370657
* Fix a typo in a commentAlexander Levin2010-12-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28777 a1c6a512-1295-4272-9138-f99709370657
* libtremor: merge upstream revisions 17541, 17542, 17543, 17544, 17545, ↵Nils Wallménius2010-12-08
| | | | | | 17546, 17547, 17555, 17572, bringing in various fixes and finally bringing our libtremor up to date, for now. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28773 a1c6a512-1295-4272-9138-f99709370657
* libtremor: merge upstream revision 17539 and 17540 'Additional codebook ↵Nils Wallménius2010-12-08
| | | | | | validity checks.' git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28771 a1c6a512-1295-4272-9138-f99709370657
* libtremor: merge upstream revision 17538 'Fix decoder handling of floor0 ↵Nils Wallménius2010-12-08
| | | | | | when the LSP order is 1.' git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28770 a1c6a512-1295-4272-9138-f99709370657
* libtremor: merge upstream revision 17534 and 17536, fixing a possible 64 bit ↵Nils Wallménius2010-12-08
| | | | | | math overflow and correct types for some comparisons. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28769 a1c6a512-1295-4272-9138-f99709370657
* libtremor: merge upstream revision 17528-17530, more error checking and bug ↵Nils Wallménius2010-12-08
| | | | | | fixes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28768 a1c6a512-1295-4272-9138-f99709370657
* libtremor: merge upstream revision 17527, 'Eliminate possibility of booklist ↵Nils Wallménius2010-12-08
| | | | | | overflow in res0/1/2 unpacking.' git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28767 a1c6a512-1295-4272-9138-f99709370657