summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* plugins: another round of making local functions staticBertrik Sikken2011-10-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30758 a1c6a512-1295-4272-9138-f99709370657
* Missed two spots.Björn Stenberg2011-10-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30757 a1c6a512-1295-4272-9138-f99709370657
* Changed the FOR_NB_SCREENS macro to always be a for loop that declares its ↵Björn Stenberg2011-10-15
| | | | | | own loop variable. This removes the need to declare this variable in the outer scope. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30756 a1c6a512-1295-4272-9138-f99709370657
* Revert 30754 because the codecs won't build correctly, anyway.Fred Bauer2011-10-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30755 a1c6a512-1295-4272-9138-f99709370657
* undef DEBUG in pcm_record.c because it's broken and breaks DEBUG buildsFred Bauer2011-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30754 a1c6a512-1295-4272-9138-f99709370657
* Fix yellowFred Bauer2011-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30753 a1c6a512-1295-4272-9138-f99709370657
* Remove font_reset() which tried to fetch font *pfs from uninitiaized ↵Fred Bauer2011-10-14
| | | | | | buflib_allocations. Change handle locking to track number of locks applied. Remove some duplicated code from internal_load_font() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30752 a1c6a512-1295-4272-9138-f99709370657
* Update Dutch langfilePeter D'Hoye2011-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30751 a1c6a512-1295-4272-9138-f99709370657
* Don't make font available via buflib_allocations[] until fully loadedFred Bauer2011-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30750 a1c6a512-1295-4272-9138-f99709370657
* Fix off-by-one buffer errorThomas Jarosch2011-10-14
| | | | | | | | The _GET_CPU macro will write a terminating zero at cpu[8]. Detected by cppcheck git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30749 a1c6a512-1295-4272-9138-f99709370657
* i.MX31 avic: Fix super-stale comment.Michael Sevakis2011-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30748 a1c6a512-1295-4272-9138-f99709370657
* i.MX31: Simplify nested interrupt handling. Give SVC mode its own stack by ↵Michael Sevakis2011-10-14
| | | | | | grabbing the FIQ stack that's just been taking up space. Just get rid of all FIQ setup since it isn't used anyway. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30747 a1c6a512-1295-4272-9138-f99709370657
* rk27xx - add support for i2s in master mode. Based on patch by Andrew RyabininMarcin Bukat2011-10-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30746 a1c6a512-1295-4272-9138-f99709370657
* rk27xx - fix sys timer clock setup. Spotted by Andrew RyabininMarcin Bukat2011-10-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30745 a1c6a512-1295-4272-9138-f99709370657
* Make a few local functions staticBertrik Sikken2011-10-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30744 a1c6a512-1295-4272-9138-f99709370657
* Sansa AMSv2: set internal voltages PVDD1 and AVDD17 to the same value as the ↵Bertrik Sikken2011-10-12
| | | | | | | | | | OF does. * improves audio quality and increases maximum volume * reduces pop on power-down * reduces runtime slightly (about 3%) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30743 a1c6a512-1295-4272-9138-f99709370657
* Switch to SYS mode on arm FS#12322 by meMarcin Bukat2011-10-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30741 a1c6a512-1295-4272-9138-f99709370657
* fix redRafaël Carré2011-10-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30740 a1c6a512-1295-4272-9138-f99709370657
* mpegplayer sync_audio_setting(): simplify / clarifyRafaël Carré2011-10-10
| | | | | | fix fuze+ yellow git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30739 a1c6a512-1295-4272-9138-f99709370657
* Another fix for audio_get_buffer() on hwcodec by Thomas Martitz.Jens Arnold2011-10-09
| | | | | | | | Some functions must only be called when audio is already initialized, due to talk <-> audio interdependency, same as on swcodec. This makes hwcodec boot and play music again. Voice menus also working again, talk clips not yet. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30738 a1c6a512-1295-4272-9138-f99709370657
* Fix audio_get_buffer() implementation on hwcodec, to be similar to the ↵Thomas Martitz2011-10-09
| | | | | | swcodec one. Should make hwcodec bood again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30737 a1c6a512-1295-4272-9138-f99709370657
* Protect the move operation of buflib against IRQs.Thomas Martitz2011-10-09
| | | | | | | This makes accessing the buffers with core_get_data() from interrupt context safe, other buflib functions aren't really safe (yet). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30736 a1c6a512-1295-4272-9138-f99709370657
* More de-tabificationBertrik Sikken2011-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30735 a1c6a512-1295-4272-9138-f99709370657
* de-tabifyNils Wallménius2011-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30734 a1c6a512-1295-4272-9138-f99709370657
* usb: only declare usb_mmc_countdown on target which don't use the usb stackAmaury Pouly2011-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30733 a1c6a512-1295-4272-9138-f99709370657
* imx233/fuze+: declare 3d audio capability, update lang accordinglyAmaury Pouly2011-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30732 a1c6a512-1295-4272-9138-f99709370657
* Remove errorneous ; after "for" statement.Thomas Jarosch2011-10-08
| | | | | | Detected by my upcoming cppcheck check git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30731 a1c6a512-1295-4272-9138-f99709370657
* libtremor: build with -O2 for cf, gives a slight speedup on high bitrate ↵Nils Wallménius2011-10-08
| | | | | | files (~1%) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30730 a1c6a512-1295-4272-9138-f99709370657
* fix warning in debug codeNils Wallménius2011-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30729 a1c6a512-1295-4272-9138-f99709370657
* libtremor: hack to work around huge allocations for the comment packet in ↵Nils Wallménius2011-10-08
| | | | | | files with embedded album art. Should fix playback of such files on targets with large codec buffers. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30728 a1c6a512-1295-4272-9138-f99709370657
* Fix exit/return behavior in the id3 info screen.Fixes returning immediately ↵Thomas Martitz2011-10-07
| | | | | | on touchscreen. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30727 a1c6a512-1295-4272-9138-f99709370657
* sansa clipplus: add version 01.02.16 to mkamsboot as a firmware that can be ↵Bertrik Sikken2011-10-07
| | | | | | patched git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30726 a1c6a512-1295-4272-9138-f99709370657
* Fix touchscreen behavior in time&date screen.Thomas Martitz2011-10-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30725 a1c6a512-1295-4272-9138-f99709370657
* Add two macros for char*-based pointer arithmetic and use it in font.cThomas Martitz2011-10-07
| | | | | | | | | This fixes errornous pointer addition (+ on a short*), which crashed in some situation. Fixes FS#12317 and should hopefully get the clips booting again. Thanks to Jonathan Gordon for spotting the bad pointer arithmetic. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30724 a1c6a512-1295-4272-9138-f99709370657
* Correct left-over assignment.Thomas Martitz2011-10-07
| | | | | | Also remove unnecessary NULL guard. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30723 a1c6a512-1295-4272-9138-f99709370657
* Re-order things to fix red.Thomas Martitz2011-10-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30722 a1c6a512-1295-4272-9138-f99709370657
* lists: Detect dirtyness (need to reinit) for each list, instead of once ↵Thomas Martitz2011-10-07
| | | | | | globally. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30721 a1c6a512-1295-4272-9138-f99709370657
* Manual: Small English improvementAlex Parker2011-10-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30720 a1c6a512-1295-4272-9138-f99709370657
* core_alloc: Provide a tiny test allocation, which can be freed for debug ↵Thomas Martitz2011-10-05
| | | | | | | | | | purposes. This allocation can be freed in the buflib debug menu (select it to free). Doing a another allocation, e.g. by selecting another item in this debug menu will cause compaction (all allocs move). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30719 a1c6a512-1295-4272-9138-f99709370657
* Revert r30599 "Check for the magic file "/.rockbox/skin_buffer_size.txt" [...]"Thomas Martitz2011-10-05
| | | | | | | | | It's not clear whether a user setting is the right/accepted fix for the skin buffer. But even if it is, this implementation of it is considered bad, even by the author. See http://www.rockbox.org/mail/archive/rockbox-dev-archive-2011-09/0054.shtml git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30718 a1c6a512-1295-4272-9138-f99709370657
* Changed #warning to a TODO comment.Björn Stenberg2011-10-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30717 a1c6a512-1295-4272-9138-f99709370657
* Only alloc if necessary. Patch by Jonathan Gordon.Björn Stenberg2011-10-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30716 a1c6a512-1295-4272-9138-f99709370657
* Clean up compressor setting codeJeffrey Goode2011-10-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30715 a1c6a512-1295-4272-9138-f99709370657
* Do not font_unload() failed fonts when aborting a skin loadFred Bauer2011-10-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30714 a1c6a512-1295-4272-9138-f99709370657
* Make function calc_db in peakmeter.c staticBertrik Sikken2011-10-04
| | | | | | Remove some unneeded #include "peakmeter.h" git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30713 a1c6a512-1295-4272-9138-f99709370657
* Remove unused function display_keylock_textBertrik Sikken2011-10-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30712 a1c6a512-1295-4272-9138-f99709370657
* plugins: make local functions static for metronome, rockblox1d, wavviewBertrik Sikken2011-10-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30711 a1c6a512-1295-4272-9138-f99709370657
* Rockbox Utility: refresh some more dynamic strings after translation change.Dominik Riebeling2011-10-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30710 a1c6a512-1295-4272-9138-f99709370657
* Silence build warningJeffrey Goode2011-10-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30708 a1c6a512-1295-4272-9138-f99709370657
* r30706 was not the right fix - thanks to amiconn for catching the errorMichael Chicoine2011-10-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30707 a1c6a512-1295-4272-9138-f99709370657