summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* SWCODEC Playback: Put a stop to the resume deadlock however crudely. Clean ↵Michael Sevakis2007-05-09
| | | | | | some unused lines out that no longer compatible. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13364 a1c6a512-1295-4272-9138-f99709370657
* Fix errors. LOGFQUEUE should take formatting parameters now.Michael Sevakis2007-05-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13363 a1c6a512-1295-4272-9138-f99709370657
* Silly fix for a silly comment mistake.Michael Sevakis2007-05-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13362 a1c6a512-1295-4272-9138-f99709370657
* SWCODEC Playback: Seriously mess with it and get rid of (at least some ;) ↵Michael Sevakis2007-05-08
| | | | | | race conditions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13361 a1c6a512-1295-4272-9138-f99709370657
* Playback: Ensure some state coherency. paused implies playing and pause ↵Michael Sevakis2007-05-08
| | | | | | actions are bypassed if not playing. stopped implies not playing and not paused. Starting playback transistions to playing and not paused. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13360 a1c6a512-1295-4272-9138-f99709370657
* Fix red overlay plugins on archos. Linker scripts weren't prepared for those ↵Jens Arnold2007-05-08
| | | | | | plugins using plugin library components. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13359 a1c6a512-1295-4272-9138-f99709370657
* Move the old api out of the core and into the plugin lib.Jonathan Gordon2007-05-08
| | | | | | | ew plugins shuold use the new api and not this one. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13358 a1c6a512-1295-4272-9138-f99709370657
* Fix a warningKarl Kurbjun2007-05-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13357 a1c6a512-1295-4272-9138-f99709370657
* Add in buttonlight brightness setting for the Gigabeat, and setup the ↵Karl Kurbjun2007-05-08
| | | | | | framework for future players that have adjustable button light brightness settings. Also fixed a bug in the backlight code when the brightness was set to 0. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13356 a1c6a512-1295-4272-9138-f99709370657
* Few more code cleanups to the button light work. This reduces the ↵Karl Kurbjun2007-05-08
| | | | | | flickering of the backlight when a button is held (fewer sc606 writes). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13355 a1c6a512-1295-4272-9138-f99709370657
* Faster/Smoother fading on the GigabeatKarl Kurbjun2007-05-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13354 a1c6a512-1295-4272-9138-f99709370657
* fix the menus again, this time it stopped redrawing after coming out of ↵Jonathan Gordon2007-05-08
| | | | | | setting screens git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13353 a1c6a512-1295-4272-9138-f99709370657
* Fix Gigabeat english.lang target specific strings (should be gigabeatf ↵Karl Kurbjun2007-05-08
| | | | | | rather then gigabeat) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13352 a1c6a512-1295-4272-9138-f99709370657
* Fix the red Gigabeat bootloader: Add a dummy for button_backlight_on with ↵Karl Kurbjun2007-05-08
| | | | | | the rest of the backlight functions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13351 a1c6a512-1295-4272-9138-f99709370657
* SyncedJonas Häggqvist2007-05-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13350 a1c6a512-1295-4272-9138-f99709370657
* Revert the addition of the steal_codec_stack function. Replace by accessing ↵Dave Chapman2007-05-07
| | | | | | the threads structure to grab the codec stack. Maybe a better solution exists. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13349 a1c6a512-1295-4272-9138-f99709370657
* Reduce code size for players that do not have the 'Human Interface ↵Karl Kurbjun2007-05-07
| | | | | | Luminescence Control' feature git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13348 a1c6a512-1295-4272-9138-f99709370657
* Use a separate thread in test_codec, with the same (IRAM) stack as the main ↵Dave Chapman2007-05-07
| | | | | | codec thread. Add a function to the plugin API to steal the codec thread, which test_codec copies and then restores. Now libmad can be benchmarked. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13347 a1c6a512-1295-4272-9138-f99709370657
* Basic gigabeat buttonlight support outside of debug menu FS#7112. Also ↵Karl Kurbjun2007-05-07
| | | | | | disables USB PLL and the USB device clock (uneeded to connect to computer) - May offer some power savings. Changed how some pins are initialized. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13346 a1c6a512-1295-4272-9138-f99709370657
* Initial version of a test_codec plugin (viewer). This loads the audio file ↵Dave Chapman2007-05-07
| | | | | | into the audio buffer and decodes it as fast as it can via a locally implemented version of the codec API. Intended for use when optimising codecs - so isn't built by default. Remember to add it to both plugins/SOURCES and viewers.config to enable it. Currently the codec is run in the main thread which means mpa.codec doesn't work - it requires more stack than is available on the main thread. The solution will be to create a new thread in the plugin which steals the main codec thread's IRAM stack, but that's not done yet. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13345 a1c6a512-1295-4272-9138-f99709370657
* Minor header file cleanup - try and include the minimal number of files, and ↵Dave Chapman2007-05-07
| | | | | | only where they are needed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13344 a1c6a512-1295-4272-9138-f99709370657
* Clean up the codec API - remove all unused (and in many cases inappropriate) ↵Dave Chapman2007-05-07
| | | | | | functions, move functions used only by encoders into the HAVE_RECORDING part of the API and document the reasons for the more unexpected functions being present. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13343 a1c6a512-1295-4272-9138-f99709370657
* VBRfix description, part 2: actually this note was way outdated. Files ↵Marianne Arnold2007-05-07
| | | | | | recorded with rockbox should contain the vbr header - the hint about using it on files with broken/missing headers in general is enough. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13342 a1c6a512-1295-4272-9138-f99709370657
* Code police - codecs shouldn't call GUI functionsDave Chapman2007-05-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13341 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#7123 - add h10_5gb stringsJonathan Gordon2007-05-07
| | | | | | | Do the same for e200 by me git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13340 a1c6a512-1295-4272-9138-f99709370657
* VBRfix description: No need to tell OndioSP owners about files they recorded ↵Marianne Arnold2007-05-07
| | | | | | with their player... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13339 a1c6a512-1295-4272-9138-f99709370657
* Fix my previous commit... menus will redraw correctly againJonathan Gordon2007-05-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13338 a1c6a512-1295-4272-9138-f99709370657
* Fix the menus so lines scroll againJonathan Gordon2007-05-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13337 a1c6a512-1295-4272-9138-f99709370657
* e200 viewer button changes:Jonathan Gordon2007-05-06
| | | | | | | | - rec button toggles auto-scroll - scroll wheel scrolles text up/down by lines (FS#7087) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13336 a1c6a512-1295-4272-9138-f99709370657
* Fix metadata reading for 64 bit sims. Closes FS#6690Nils Wallménius2007-05-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13335 a1c6a512-1295-4272-9138-f99709370657
* e200: set the default values to stop the backlight turning off on boot, ↵Jonathan Gordon2007-05-06
| | | | | | regardless of the setting git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13334 a1c6a512-1295-4272-9138-f99709370657
* FS #7115. Updated nynorsk translation by Karl Ove Hufthammer.Thom Johansen2007-05-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13333 a1c6a512-1295-4272-9138-f99709370657
* Emphasise the installation steps required to install Rockbox itself - ↵Dave Chapman2007-05-06
| | | | | | hopefully less people will now skip this step git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13332 a1c6a512-1295-4272-9138-f99709370657
* When installing on the gigabeat don't use the cradle to connect to the pc.Dominik Riebeling2007-05-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13331 a1c6a512-1295-4272-9138-f99709370657
* early proxy support on rbutilDominik Wenger2007-05-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13330 a1c6a512-1295-4272-9138-f99709370657
* integrated Manual for rbutilDominik Wenger2007-05-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13329 a1c6a512-1295-4272-9138-f99709370657
* rbutil now ask before doing anything, plus minor gui changesDominik Wenger2007-05-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13328 a1c6a512-1295-4272-9138-f99709370657
* Fix buffer overflow when adding a radio preset.Magnus Holmgren2007-05-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13327 a1c6a512-1295-4272-9138-f99709370657
* DancePuffDuo.wps and marquee.wps can use the nimbus-13 font now. Fixed the ↵Marianne Arnold2007-05-05
| | | | | | alignment issues that were there since the chicago-'12' font had been removed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13326 a1c6a512-1295-4272-9138-f99709370657
* Additions to the nimbus font family: nimbus-13 made from nimbus-12 with ↵Marianne Arnold2007-05-05
| | | | | | additional spacing, initial commit of nimbus-10 and nimbus-11 (hopefully meeting the style of the other fonts enough) - feel free to improve. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13325 a1c6a512-1295-4272-9138-f99709370657
* Enable KBD_CURSOR_KEYS and KBD_MODES on Gigabeat. Enter things any way you like.Michael Sevakis2007-05-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13324 a1c6a512-1295-4272-9138-f99709370657
* Default HW_SAMPR_CAPS should be SAMPR_CAP_44, not 0.Michael Sevakis2007-05-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13323 a1c6a512-1295-4272-9138-f99709370657
* Fix some errorsMichael Sevakis2007-05-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13322 a1c6a512-1295-4272-9138-f99709370657
* Gigabeat: Remove the 8kHz for now because it doesn't seem to work too well. ↵Michael Sevakis2007-05-04
| | | | | | Also, HW_SAMPR_CAPS should always be defined for sim and target. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13321 a1c6a512-1295-4272-9138-f99709370657
* Get samplerate switching working in the sim to be similar to on target. Make ↵Michael Sevakis2007-05-04
| | | | | | all pcm functions available there as well. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13320 a1c6a512-1295-4272-9138-f99709370657
* bugfixes in AS3514 shadow register handling, for details see patch #7101Antonius Hellmann2007-05-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13319 a1c6a512-1295-4272-9138-f99709370657
* date calculation corrected, fixes #7096 and #7097Antonius Hellmann2007-05-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13318 a1c6a512-1295-4272-9138-f99709370657
* Audio seemed never to want to stop stopping. A bad condition for plugins ↵Michael Sevakis2007-05-03
| | | | | | that want to stop audio and begin pcm playback immediately. Only do the stop if the state is playing. Properly wait for it to be done as well. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13317 a1c6a512-1295-4272-9138-f99709370657
* Make rbutil compile on Mac OS XDave Chapman2007-05-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13316 a1c6a512-1295-4272-9138-f99709370657
* Support for Sansa E200 in rbutilDominik Wenger2007-05-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13315 a1c6a512-1295-4272-9138-f99709370657