|
9779 | Patches | Build environment | Very Low | rework of assert | 2009-01-11 | Yoshihisa Uchida | 2010-02-17 | 2 |
Task Description
Building Rockbox fails if assert() (in firmware/include/assert.h) is used.
Then, I reworked assert.h.
changes: When assert() failed, the correction that displayed the file name, the number of lines, and the condition of failing was done. Moreover, when the log was enabled, the log was output to the file.
Please select the following to make assert() enabled when you make Rockbox.
1) Run tools/configure
2) Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, …
Select "A"
3) (D)EBUG, (L)ogf, (A)ssert, (S)imulator, (P)rofile, (V)oice
Select "A"
4) make
|
|
9856 | Patches | Plugins | Very Low | More robust patchset.cfg reader for midi player | 2009-02-01 | Corwyn Simpson | 2009-02-13 | 2 |
Task Description
I was reading http://forums.rockbox.org/index.php?topic=17079.0 and thought I’d take a swing at it. So far, I have added (potentially shaky?) support for the ‘#’ comments in the file posted, allowing both Windows and Linux line ending formats, and longer filename support. Still having problems with the white space after each entry, and detecting or assuming the presence of the file extension.
|
|
9881 | Patches | Plugins | Very Low | Enable toggling the lamp on and off in the lamp plugin | 2009-02-07 | Alexander Levin | 2009-02-08 | 2 |
Task Description
This patch is a continuation of FS#9879 and includes it (but adds something more). It adds the possibility to switch the lamp on and off without leaving the plugin.
Key mappings were taken from FS#8934.
|
|
9917 | Patches | Drivers | Very Low | Cowon D2 Usb Serial | 2009-02-16 | Michaël Burtin | 2010-10-26 | 2 |
Task Description
Here’s a patch to have a functional usb_serial driver allowing the use of “Logf over Usb” debug function.
|
|
10181 | Patches | FM Tuner | Very Low | Allow the FM region to be set from a FMR file | 2009-05-01 | Alexander Levin | 2009-05-14 | 2 |
Task Description
Since FM stations list may require that the FM region is set to a certain value, it would be good if the FM region could be set along with the station list. The patch does just that.
The region is set by putting the line “region:N” into the FMR file (at any line there). N can be one of the values allowed for the fm_region setting.
The patch does not work on the simulators for e200 and h120 (the only two I tried) because, for some reason, the symbol HAVE_RADIO_REGION is not defined for them. Could anybody tell why?
Saving the region along with the station list is not implemented.
|
|
10192 | Patches | Plugins | Very Low | Drumkit / Drumpad / Sample Trigger / Instrument Plugin | 2009-05-08 | Marc Guay | 2009-06-17 | 2 |
Task Description
This plugin searches in the .rockbox/rocks/apps/drumkit directory for .raw sound files, loads them into memory, and assigns the keys to play them, creating a drumkit /sample trigger / instrument out of the player. Currently only designed for the Sansa e200.
Room for improvement:
- Add keymaps for all Allow multiple samples to be played at the same time (by using Allow for a variety of sound file types to be Find a better name
|
|
10292 | Patches | Simulator | Very Low | Compile Rockbox simulator with LLVM | 2009-06-07 | Maurus Cuelenaere | 2009-10-30 | 2 |
Task Description
This patch enables you to compile the Rockbox simulator with LLVM (you still need to alter the Makefile yourself though).
However, it fails at linking stage with 'file not recognized: File truncated' errors.
|
|
10360 | Patches | Recording | Very Low | Recording settings aren't saved when changed on the rec... | 2009-06-21 | David Johnston | 2009-12-17 | 2 |
Task Description
This bug currently exists as of rev 21444.
If settings are modified on the recording screen they aren't persistent after a reboot unless another setting is changed somewhere in the menu system.
The problem is that global_settings is being modified without a subsequent call to settings_save().
Attached is a fix for this problem. I've so far only tested it on the h1x0 simulator but I think it's a pretty benign change, unlikely to cause problems on other targets.
|
|
10440 | Patches | User Interface | Very Low | Add the possibility to toggle the pitch changing mode i... | 2009-07-15 | Alexander Levin | 2009-07-17 | 2 |
Task Description
As of r21894, the pitch changing mode (in the pitch screen) can only be toggled (cycled through) in one direction. However it would be handy to be able to cycle in the other direction to change procentual vs. semitone while still staying in the time stretch mode. This patch adds such a possibility.
The key mappings is only defined for H1xx and H3xx (as a long press of Mode). Please add keys for other platfroms.
|
|
10480 | Patches | FM Tuner | Very Low | fm radio support for Samsung YH-820 YH-920 YH-925 | 2009-07-31 | Jens Erdmann | 2009-09-03 | 2 |
Task Description
I tried to make the first shot on adding fm radio support for the Samsung YH-* devices.
–
|
|
10511 | Patches | Build environment | Very Low | Fixed multiple-language feature in tools/configure | 2009-08-11 | Rosso Maltese | 2020-07-14 | 2 |
Task Description
The patch fix the multiple-language feature, maintaining the same behaviour in interactive and batch mode and with “make reconf”. Now it’s possible to build more than one voice language at once, specifying different engine and option set for each one. So, running “make voice”, all the selected languages will be built.
To help the comprehension, here it is a batch mode sample:
../tools/configure –target=ipodvideo –ram=64 –type=av –language=italiano,espanol –tts=f,e –voice=lp_diphone –ttsopts=, –encopts=’-q 10 -c 10,-q 5 -c 5’
This is like to run:
../tools/configure –target=ipodvideo –ram=64 –type=av –language=italiano –tts=f –voice=lp_diphone –ttsopts=’ ' –encopts=’-q 10 -c 10’
../tools/configure –target=ipodvideo –ram=64 –type=av –language=espanol –tts=e –voice=lp_diphone –ttsopts=’ ' –encopts=’-q 5 -c 5’
In the first case, I set the language to italian, using festival with voice lp_diphone (female), no further festival options and some manual encoder options. In the second case, I set the language to spanish, using espeak. Even if I set the voice, the value is ignored, since the selected TTS engine doesn’t use it.
I also added some cosmetics, like some very circumstantial indentation, blank check in rootdir too, simpler numbered menu generation, some terser command pipes.
The patch is applied to r22250.
I don’t know if it’s a really wanted feature, but the word in the script hurt me!
|
|
10648 | Patches | User Interface | Very Low | Cowon D2: Mpegplayer control using hardware buttons and... | 2009-10-04 | Arago | 2010-02-26 | 2 |
Task Description
Added seeking by holdplus/holdminus buttons, pause/play by holdmenu button, hiding the OSD panel by briefly pressing power switch.
|
|
11005 | Patches | Manual | Very Low | Manual: FFT plugin entry & basic conversion script | 2010-02-12 | Delyan Kratunov | 2010-02-12 | 2 |
Task Description
This is a first attempt at creating an entry for the new fft plugin. The button table was automatically generated with the attached python script.
The script takes a file (or - for stdin), looks for an #ifdef CONFIG_KEYPAD….#endif block and if it finds one (and it is relatively simple), it parses it and creates the corresponding LaTeX table.
The script is extremely simple but it does provide a good basis for further work.
|
|
11218 | Patches | Operating System/Drivers | Very Low | New build target: iriver E10 | 2010-04-25 | Olle Bergkvist | 2010-05-08 | 2 |
Task Description
New build target, for iriver E10.
A lot of target-specific functions are missing, so it doesn't compile when it reaches the linker. But I think it's about time to insert the build target into SVN, and #rockbox seems to agree.
Also, building a simulator build works quite well. The simulator BMP and the keymaps needs some work, but it works pretty well, including music playback.
I've done some testing with building for other targets and nothing seems to be broken by this patch. I couldn't figure out how to include the BMP in the patch so i attach it separately.
|
|
11249 | Patches | Operating System/Drivers | Very Low | Fixed Morse Code case switching (on Sansa Fuze / FuzeV2... | 2010-05-07 | Wenyu "Hearson" Zhang | 2020-06-29 | 2 |
Task Description
Hi all,
Currently for all models, the Morse Code input method can only type lowercased letters. Here I provide a patch which enables people to switch between lower cased and upper cased letters, I implemented this for Fuze and Fuze v2, and further fixes will be provided soon (or someone else want to add some key mapping options into your keymaps?)
The patch (also attached):
Index: apps/action.h
— apps/action.h (revision 25886) +++ apps/action.h (working copy) @@ -239,6 +239,7 @@
ACTION_KBD_DOWN,
ACTION_KBD_MORSE_INPUT,
ACTION_KBD_MORSE_SELECT,
+ ACTION_KBD_MORSE_CASE_SWITCH,
#ifdef HAVE_TOUCHSCREEN
/* the following are helper actions for touchscreen targets,
Index: apps/recorder/keyboard.c
— apps/recorder/keyboard.c (revision 25886) +++ apps/recorder/keyboard.c (working copy) @@ -148,6 +148,7 @@ #ifdef HAVE_MORSE_INPUT /* : We should put this to a configuration file. */ +static bool morse_uppercase = false; static const char *morse_alphabets =
"abcdefghijklmnopqrstuvwxyz1234567890,.?-@ ";
static const unsigned char morse_codes[] = { @@ -573,6 +574,11 @@
state.morse_code |= 0x01;
}
break;
+ case ACTION_KBD_MORSE_CASE_SWITCH: + if (state.morse_mode) { + morse_uppercase = !morse_uppercase; + } + break; #endif /* HAVE_MORSE_INPUT */
case ACTION_KBD_SELECT:
@@ -626,7 +632,8 @@
/* turn off hangul input */
state.hangul = false;
- kbd_inschar(&state, morse_alphabets[j]); + kbd_inschar(&state, + morse_uppercase ? toupper(morse_alphabets[j]) : morse_alphabets[j]);
}
#endif /* HAVE_MORSE_INPUT */
break;
@@ -862,6 +869,10 @@
int morse_code;
outline[0] = morse_alphabets[i];
+ + if (morse_uppercase) + outline[0] = toupper(outline[0]); +
sc->putsxy(x, y, outline);
morse_code = morse_codes[i];
Index: apps/keymaps/keymap-fuze.c
— apps/keymaps/keymap-fuze.c (revision 25886) +++ apps/keymaps/keymap-fuze.c (working copy) @@ -269,6 +269,7 @@
{ ACTION_KBD_DONE, BUTTON_UP, BUTTON_NONE },
{ ACTION_KBD_ABORT, BUTTON_HOME|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_KBD_MORSE_SELECT, BUTTON_SELECT|BUTTON_REL, BUTTON_NONE },
+ { ACTION_KBD_MORSE_CASE_SWITCH, BUTTON_HOME, BUTTON_NONE },
LAST_ITEM_IN_LIST
}; /* button_context_keyboard */
|
|
11337 | Patches | ID3 / meta data | Very Low | Play Count / Rating Info for Trackinfo Screen | 2010-05-31 | Chris Savery | 2010-07-09 | 2 |
Task Description
This patch adds a couple more lines to Track Info for Play Count and Rating. Currently these don’t seem to show up anywhere else.
Tested against r26427 with Fuze v2 and USim.
|
|
11429 | Patches | Operating System/Drivers | Very Low | Improved sector cache / Remove on-stack and in-struct s... | 2010-06-21 | Michael Sparmann | 2010-07-31 | 2 |
Task Description
This patch adds a sector-based read/write cache between the storage and fat drivers. It has a static pool of 64 sector buffers which can be locked by the file handling code to replace the sector buffers in the file and dir structs, and serve as cache as long as they aren’t used. It can also be used to enforce exclusive access to a sector.
If requested using the STORAGE_NEEDS_ALIGN define, all storage accesses will be aligned to cacheline boundaries.
|
|
11545 | Patches | Games | Very Low | Chopper improvements | 2010-08-16 | Michael Marley | 2010-08-26 | 2 |
Task Description
This patch contains several improvements to the Chopper game designed to make it run with a high framerate instead of a low, jerky one. Previously, the game depended on sleeping for a number cycles before drawing another frame, causing very jerky motion. Now the game should run at a high framerate all the time. The gameplay should be about the same, at least on targets with a display of >64px. I don’t have any of these smaller targets, so I wasn’t able to test. Please tell me what you think of my changes.
|
|
11665 | Patches | LCD | Very Low | LCD functions ignore viewport bg_pattern if a backgroun... | 2010-10-11 | Jonathan Gordon | 2010-10-11 | 2 |
Task Description
at least in the 16bit lcd drivers, all functions which use transparency (or clear pixels) get the pixel colour from the backdrop image, completly ignoring the bg_pattern.
This isnt a problem except in skins where it is perfectly reasonable to want a background image for most of the screen but a solid colour for one or two viewports.
There is a tiny problem though, bg_pattern is set to LCD_DEFAULT_BG which is a valid colour, so we probably need to add a flag to the viewport struct to say if it should ignore the background image or not.
|
|
11862 | Patches | User Interface | Very Low | Add a frequency response graph to the graphic equalizer... | 2011-01-06 | Attilio Scotolati | 2011-11-18 | 2 |
Task Description
This patch adds a frequency response graph below the equalizer's controls, making it an EQ that is actually "graphical".
I'm still not sure about the accuracy of the represented curve, in particular the Q factor on the peaking filters seems to have an effect opposite to the expected, though the equations are taken from the same "audio EQ cookbook" the equalizer is based on, any help is appreciated!
The user interface is still incomplete, I want to add proper tags on the axes and bars. I also thought about re-enabling the theme on this screen (why is it disabled?) and change the behavior of the "right" button, making it consistent with other menus.
Tested on a Sansa e200.
|
|
11927 | Patches | Database | Very Low | Queue overflow during database initialisation | 2011-02-11 | Steve Bavin | 2011-04-14 | 2 |
Task Description
While the database initialisation is running, the tagcache queue can overflow due to system broadcast messages. This can be seen by running a simulator (it will crash with KERNEL_ASSERT after a while) or on a target by enabling KERNEL_OBJECT_CHECKS, then initialising the database and repeatedly connecting/disconnecting a charger.
The same problem may well happen with other queues (dircache, for example).
|
|
11930 | Patches | Games | Very Low | Bomberman | 2011-02-12 | Lev Panov | 2011-02-12 | 2 |
Task Description
Bomberman like game with ai. Not finished yet - lots of bugs and things to be done are known :) Tested on Cowon D2 and also on some simulators with the same screen size (will work on other screen sizes too, but not now). Somebody test it on iPod Video and on Zen Vision:M please. Any suggestions greatly appreciated! Hope the patch will work…
|
|
12073 | Patches | Database | Very Low | Dynamically add files to database as they are played | 2011-04-18 | sideral | 2011-04-19 | 2 |
Task Description
These experimental patches dynamically add new tracks to the database when they are played. This allows users who (for various reasons [1]) prefer to not fully initialize the database to take advantage of database-based features such as autoresume (remember a resume position for each file), runtime statistics, or track ratings.
The current patch set is only a prototype. It's still somewhat inefficient because it does a full database commit and reload for each new track that is played.
The actual database-extension patch (patch 0002) works by refactoring tagcache_build to create a new interface, tagcache_add_file, that adds a single file to the database. This new function runs in the database thread and takes a dircache_entry pointer, which is provided by way of a Q_UPDATE event. The audio thread generates this event in tagtree_buffer_event when the initial DB lookup fails, and later checks the database again in tagtree_track_finish_event. If the DB commit and reload have succeeded in the meantime, this second lookup will succeed and the runtime information the user is interested in (stats, resume info) can be stored in the DB.
Patch 0001 changes the DB commit's buffer-allocation preference from using the dircache buffer to using the RAM DB's buffer. (This used to be the preference until r10003 reversed it, supposedly because the dircache buffer typically is bigger. I don't know yet how valid this argument is today.) This reversal avoids needlessly flushing and refilling the dircache and makes the Q_UPDATE event-passing mechanism more robust (because in-flight update events contain dircache_entry pointers, which would have to be invalidated when the dircache is flushed – which is not done yet).
Current limitations/caveats: * Requires dircache and Load-DB-to-RAM enabled (and only works on targets that include these features) * tagcache_add_file does not respect any database.[un]ignore files in the directory hierarchy above the added new file. * DB needs to be initialized to begin with. There's no UI function for a basic DB initialization (without scanning and adding all files) yet. * Not very thoroughly tested (mostly in simulator, with small file sets)
Possible improvements: * Delay committing DB changes if more track-add events are in the tagcache queue * Incremental commit: Could be optimized for add-one-track case * Incremental load_tagcache: Avoid flushing and reloading full database * Add function to initialize an empty DB
Comments welcome!
Footnote: [1] Reasons for not using the database, or not keeping it up to date, include: metadata parser instability; prefer not keep tags up to date; prefer file browser over database browser
|
|
12074 | Patches | Settings | Very Low | Add setting to enable/disable lineout on Sansa Fuze V2 | 2011-04-19 | Rob Walker | 2019-08-02 | 2 |
Task Description
This patch allows the line out on the Sansa Fuze V2 to be enable/disabled by means of the existing Lineout poweroff setting (previously used on some iPods).
By assigning this setting to the quickscreen I can switch between headphones and lineout after plugging into the dock. Still no luck in finding out how to autodetect the dock.
I'm not 100% sure that re-using the "Lineout Poweroff" setting is the right thing to do here as it's not powering on/off the line-out - just switching between headphones and line out
|
|
12138 | Patches | Plugins | Very Low | Freecell game - new plugin for rockbox | 2011-05-29 | Jason Stark | 2020-06-29 | 2 |
Task Description
Hacking from Antoine Cellerier’s code for solitaire.c, I put together a rough freecell game.
It currently works for Sansa E200 targets. Others should work once button mappings are done.
This is not heavily tested, so feel free to report or fix any problems you encounter.
|
|
12277 | Patches | Themes | Very Low | WPS tags for the list item number and the "divisible" o... | 2011-09-13 | Alexander Levin | 2011-09-18 | 2 |
Task Description
The patch adds two new WPS tags:
1. %Ln yields the number of the list item currently being drawn
2. The operator "/?" (which can be used in the %if tag) yields the string "div" if the first operant is divisible by the second and NULL otherwise.
With these two additions it should be possible to create themes where list items are coloured alternately (as an example).
The whole work has been done by gevaerts on 2011-09-12 (and all the credits also go to him), I only placed the patch to the patch tracker, changed the operator from "/" to "/?", and changed the function name from "skinlist_get_item" to "skinlist_get_item_number".
He posted the patch on the binpaste and it would be pity if it got lost.
|
|
12334 | Patches | Utils | Very Low | Update to my tools/talkclips.py script | 2011-10-15 | Daniel Dalton | 2011-10-15 | 2 |
Task Description
Update to my tools/talkclips.py script. Minor updates which include: - Better handling of logfile eg. we don't leave it open as was the case before - Report a few more details in the log eg. start/end time, duration, and number of talk clips created. This is useful to dettect how many files had problems… - Summarise output for user at end, of processing, number of talkclips created and how long this took (in seconds). - Report to user how many talk clips will need to be created to give them an indication of potential waiting time etc. This is calculated by first determining how many files are on the device excluding .talk files, and how many .talk files there are, and calculating the difference. - This information allows a percentage indication to be drawn throughout the script, so now the user can track the percentage as processing takes place.
Patch is attached.
Thanks.
|
|
12490 | Patches | ID3 / meta data | Very Low | WPS tag for number of channels | 2011-12-27 | Frank Gevaerts | 2011-12-28 | 2 |
Task Description
This patch adds a %ch tag that returns the number of channels in the current file.
Unfortunately, the large majority of codecs don't fill in this field in struct mp3entry. In the codecs covered by the rockbox testfiles collection, only atrac, cook and tta actually work.
I don't think it makes much sense to commit this with so few supported codecs, so help is appreciated on the codec side of things
|
|
12496 | Patches | Operating System/Drivers | Very Low | RaaA WebOS | 2011-12-30 | Jason Yu | 2013-01-04 | 2 |
Task Description
Rockbox WebOS app.
Built on r31467, 32/64-bit Ubuntu 11.10, running on a 32GB Touchpad
Directions (only tested on the above):
* Install WebOS PDK: https://developer.palm.com/content/resources/develop/sdk_pdk_download.html
* Install platform-native libsdl-dev if you haven't already. Only needed to pass configuration check as the PDK doesn't properly install staging sdl-config for some reason.
* Apply patch (patch -p0 < filename.patch)
* cd webos
* ../tools/configure, select WebOS target (206)
* make && make install && sh ./buildpkg.sh
Notes:
* This is one big hack – I fudged just about everything in /firmware (how the target system works is still not altogether clear to me) and piggybacked a lot of this off of the SDL target. Mostly in the interest of getting it to run without adding ifdefs all over the place. Obviously we'll want to be more methodical and thorough about exactly which changes need to go where moving forward.
* The Touchpad's SDL video implementation appears to adjust orientation and scale output to fit within 1024x768 as best as possible. This means that a 800x480 build will appear in landscape mode, letterboxed, while a 320x480 will appear in portrait mode, pillarboxed. The device itself automatically orients to landscape – meaning, if you're in a portrait resolution and then you exit, everything will initially be sideways – but that doesn't affect input. Scaling routines are noticeably slow.
* I tried building this as a hybrid Enyo/PDK (window mgr friendly) app but had some problems with the native part failing to execute at SDL_Init. So for now no backgrounding or notification bar.
* Make scripts use the ARM compilers installed with the PDK. I'm wondering though if this is superfluous given that the Rockbox toolchain also supports ARM7. I did try exposing some of the ARM-specific assembly but the compilation failed with the PDK compiler.
800x480 build: http://www.jasonyu.net/webos/org.rockbox.raap_0.0.1_all.ipk
|
|
13040 | Patches | Playlists | Very Low | Playlist becomes one item shorter when shuffled | 2015-03-21 | Thomas White | 2015-05-30 | 2 |
Task Description
I noticed that the playlist seems to become one item shorter when I shuffle it, using the latest Git master branch (commit 70d57080) on a Sansa Clip+.
Steps to reproduce: 1. Clear the playlist by pressing Stop (power button) 2. Add a small number of tracks to the playlist 3. Shuffle the playlist (playlist view, menu, Shuffle) 4. Observe that playlist is one item shorter than before
I tracked the reason for this down, and attach a patch. This isn't a "proper" fix, and is a bit hacky, but it does illustrate what causes the problem.
|
|
13193 | Patches | Configuration | Very Low | Add option to disable settings reset on startup | 2020-04-01 | Stefan Ott | 2020-04-03 | 2 |
Task Description
I would like to run my iPod with its keypad locked all the time, thus I wrote a little patch to an option to disable the settings reset during startup regardless of the hold button's position.
You will find the patch attached to this message. I'm not entirely convinced by the name of the new option (or my wording in general) so if you have a better idea, feel free to rename things.
|
|
7904 | Bugs | Applications | Very Low | Disable shut down on Rockpaint for iPod & Suggestions | 2007-10-08 | Mark | 2012-01-11 | 1 |
Task Description
Holding the Pause button (to move/paint down) will shut down rockbox.
This shutdown combination should be disabled for Rockpaint!
While I’m at it (and you can put this in a different Flyspray if you want), I suggest that we make use of the iPod scrollwheel somehow in Rockpaint, maybe to change the size or shape of the brush or something and/or in the menus.
I would also like to be able to set the colour of the background to start with.
|
|
8816 | Bugs | User Interface | Very Low | Extra button press required to continue browsing menus | 2008-03-28 | Ivan Komarov | 2010-08-05 | 1 |
Task Description
When utilizing the database on the iPod Photo (as well as other 4G iPods I have used), on occasion when entering a directory or going to the parent directory, any button on the iPod will need to be pressed before the others will have effect. I.E. before I can scroll to select a song, I must press Select or one of the other wheel buttons. It is severely annoying, in part because it is too sporadic to even be assumed to be a “feature”.
|
|
8867 | Bugs | Music playback | Very Low | Equalizer is adding high noises | 2008-04-10 | André Scheffler | 2008-04-10 | 1 |
Task Description
The (software-)equalizer is adding high noises to the playback.
I made a recording, the first part with eq enabled the second one with disabled equalizer.
I could also make a test on my older H110, on which I never used the sw-eq though.
|
|
9502 | Bugs | Codecs | Very Low | Freeze when playing multi-track OGG files | 2008-10-21 | dmitry | 2011-04-21 | 1 |
Task Description
also category: Some containers, like Matroska MKA or like Ogg can contain numerous audio tracks, for example the whole AudioCD contained within single Ogg file.
For example VideoLAN.org plays such files ok, while fails to show separate tracks/tags in playlist.
However, RockBox justs freezes and until reboot can no longer play music (each file is detected as having zero duration)
example can be found: [link deleted - it was a full copyrighted album]
|
|
9775 | Bugs | Music playback | Very Low | Premature and multiple storage_sleep() in buffering.c | 2009-01-10 | Boris Gjenero | 2011-11-11 | 1 |
Task Description
While examining disk performance with FS#9708 , I found one album where the disk stayed spinning with no activity for 5 s longer when using PIO. This is repeatable with that particular album. With the downloaded r19739-090109 build, this did not happen with the default settings but it started happening as soon as I enabled dircache. Prolonging the disk timeout prolongs the extra sleeping time.
Experimentation with shows that the storage_sleep() part of fill_buffer() (in apps/buffering.c) is executed early in the buffering and it is not executed at the end. With another album where spindown happens properly, ata_sleep() is called twice. Note that ata_sleep() just sets last_disk_activity, and sleep happens over half a second later if there is no disk activity during that period and last_user_activity has timed out.
I think this is a race condition based on how dircache and transfer rates change things. I wonder if it is related to FS#9541 .
The data mentioned is located at http://spreadsheets.google.com/ccc?key=pkeRcfM0sg949P3a5EYXtew and the delayed spindown is seen in the EP7 PIO test. In that data, also note how sectors written are 5, 10 or 15, with differences between different tests with the same album.
I have a 30GB 5th generation iPod, but I expect this issue affects all SW-codec players.
|
|
9822 | Bugs | Playlists | Very Low | RB sometimes forgets where it is in a playlist and that... | 2009-01-23 | Jeff Nemic | 2009-04-16 | 1 |
Task Description
Sometimes when I shut my unit off and then turn it on again and resume playback, RB resumes from a different place than where it left off, and even though when I resume shuffle is on (as indicated by its icon), it isn’t. It’ll play the current track, then the next track in the playlist (which in my case is in order by track number, so it’ll play the next track on the album), and so on.
If I turn shuffle off and then on again, shuffle works correctly again.
I’m using a build from January 19 (19800-090119) on an Archos Recorder. I noticed this bug occurring in the 3.1 build as well.
It seems to happen randomly – I can’t figure out anything specifically that I can do to always make it happen.
|
|
9966 | Bugs | Build environment | Very Low | H10 5G MTP bootloader can't be built from configure | 2009-02-27 | Frank Gevaerts | 2009-03-03 | 1 |
Task Description
The H10 5G MTP needs a different bootloader than the UMS version (see http://www.rockbox.org/twiki/bin/view/Main/IriverH10PortDevInfo#Build_a_Rockbox_Bootloader). I’m not sure about the correct way to do this in configure, so I’ll leave it to someone who is.
|
|
10362 | Bugs | User Interface | Very Low | Flickering backlight when removing hold with backlight ... | 2009-06-21 | Jonas Häggqvist | 2011-10-25 | 1 |
Task Description
After releasing hold after several minutes of playback with hold enabled, the backlight flickers on and off, if the following settings are enabled:
Backlight on hold: off Backlight fade in: on Backlight fade out: on Caption backlight: on
My theory is that fade-in/out events from the caption backlight somehow get queued up, and happen once hold is released.
Happened as recently as today, with r21438. Reports in IRC said it appeared somewhere between 3.0 and 3.1.
|
|
10437 | Bugs | Build environment | Very Low | Build failure the uisimulator using MinGW. | 2009-07-15 | Yoshihisa Uchida | 2009-08-20 | 1 |
Task Description
The uisimulator cannot be build by using the source of the latest version on MinGW.
I send this bug’s patch.
It is necessary to apply the patch of FS#10021 to build the firmware on MinGW.
|
|
10686 | Bugs | Themes | Very Low | Peakmeter on ipod 5g using too much CPU (replacing FS#1... | 2009-10-18 | Dave Hooper | 2011-12-19 | 1 |
Task Description
(Replacing FS#10527 ) Peakmeter on ipod video 5g uses too much CPU, such that audible glitches occur during even flac/wav decoding .
|
|
10874 | Bugs | Music playback | Very Low | no track will play after playing a deleted, semi-buffer... | 2009-12-24 | Johannes Linke | 2012-05-03 | 1 |
Task Description
to reproduce:
1. start a big (20mb or more) track. delete it immidiately after starting it. 2. let the song play until it stops. i guess it stops at the end of the buffer. as an alternative you can ff to the end of the track (which shouldn't be buffered) 3. now you're not able to play any track. if you select a new one from the file browser or database, the wps will show up, but nothing is played and the progress bar won't progress. ff and rw also don 't work. only rebooting helps. shutting down needs really long (~15s).
if you delete a fully buffered song, everything works as expected (well, the song continues till the end, and the next song starts. some devs call that "expected" :D ).
tested with r24091 and an e200, although i guess that the bug is target independent and occurs in the last few thousand revisions :)
|
|
11231 | Bugs | Codecs | Very Low | Skipping and stuttering in low bitrate .WMA files | 2010-04-30 | Michael Bauminger | 2011-10-27 | 1 |
Task Description
This is actually release 3.5.1
I have quite a few low bitrate .wma audio files that play fine in the original firmware, play fine in VLC, but skip, stutter, and hiss in Rockbox.
The file is 20kbps, 22 kHz, mono, Windows Media Audio V2.
I have attached a sample cut from a larger file. Like the original files, it plays fine in the original firmware and in VLC.
|
|
11286 | Bugs | Plugins | Very Low | PictureFlow segfault when showing tracklist or playing ... | 2010-05-17 | Chris Savery | 2010-05-25 | 1 |
Task Description
I've been working on PictureFlow - WPS Integration. I repeatedly had cases where showing a tracklist or playing for certain albums would cause a segfault. I tracked this down to a bug in the track list indexing. It only occurs under certain memory allocation circumstances that doesn't occur as readily with the std build. I have attached here a patch to fix it.
Explanation: the create_track_index requests memory for building a track index. The variable "tracks" references an array descending from the buffer top end. When a reallocation occurs it currently only moves the "tracks" position when a track count > 0. However, in some cases a reallocation occurs before the first track is stored and in that case the "tracks" position gets left in the middle of the track_names data causing corruption and then segfault. I've moved the (track_count > 0) decision so that it only controls moving tracks struct data. The "tracks" offset must happen even when track_count is 0.
This patch fixes the segfault on my Sansa Fuze v2 and in UISim. Tested against r26114. I would expect the same result in other platforms.
I've also included this bug fix in my PictureFlow - WPS Integration patch until this bug fix gets accepted.
|
|
11355 | Bugs | Music playback | Very Low | Auto-Change Directory crashes hardwarecodec players | 2010-06-05 | Marianne Arnold | 2012-01-14 | 1 |
Task Description
When the option “Auto-change directory” is enabled, my Ondio crashes at the end of the current folder’s playlist when it would have to create a new one.
The error it shows is “I09: CPUAdrEr at 09010FF8”. The address varies a bit with the actual revision, this example is with r26246 and an OndioFM backlight build (but the problem is present in plain SVN builds too). Looking at the map file shows that the crash happens in the cue_find_current_track function.
Bisecting build turned up that the error was introduced with the cuesheet rework in r21978/9 and the fix in 21982 fixed usual folder playback but not auto-change directory. It is reproducible on the Archos Recorder so I assume a general hwcodec problem.
|
|
11486 | Bugs | Database | Very Low | Bookmarks from tagcache don't work | 2010-07-18 | Marek Salaba | 2011-02-19 | 1 |
Task Description
Hello.
I found that bookmarks which was automaticaly created (by the function Bookmark on Stop with set to Ask) from tagcache don’t work. Problem is in missing path to file in bmark file. I made more test and now I attach bmark where first line/bookmark is from tagcache and second line/bookmark is from files browser. Both are on approximately same time.
I testted on Sansa c250 and Sansa Fuse2 with Rockbox r27481-100718.
Can anybody from developers focused on it, please.
Much more thanks. Salaba
|
|
11529 | Bugs | Themes | Very Low | Sansa e200v2 progressbar lags when backlight activated | 2010-08-10 | JT Hundley | 2010-10-11 | 1 |
Task Description
In my customized rockbox theme, there is a short (half second?) but irritating delay before the progressbar is drawn. This delay is apparent when pressing a button to turn on the backlight, so it doesn’t show up in the simulator. Here is a video of the issue happening: http://www.youtube.com/watch?v=1LAfW8-BjjE
I’ve tried moving the progressbar to the very top of the wps. I also tried changing the wps around to have each icon in a seperate viewport which didn’t help.
I’m using rockbox version 27667.
|
|
11589 | Bugs | User Interface | Very Low | Early USB broken (no statusbar & crash after disconnect... | 2010-08-31 | Marianne Arnold | 2010-11-07 | 1 |
Task Description
This bug already stands for a while and was reported in IRC but since nothing happened so far, I’m going to report it here.
On targets with early USB (”usual” looking USB screen when plugging from off-state and probably only hardware bridge USB) the statusbar that should be there in the screen is missing and when you disconnect the player so that the “rest” of Rockbox would start, it crashes.
The address where the crash happens with the build currently flashed to my Ondio is in “lib/libskin_parser.a(skin_parser.o)” - more exactly “9035954: 8b fb bf 903594e <_skin_parse+0×152>”. I pastebinned the complete disassembly of the _skin_parse function here: http://pastebin.com/LZMNW96a .
I will also try to find the exact revision that introduced the bug but that’ll take a while. If I remember correctly it came with some statusbar skinning commit which is already a while ago now and crept up twice in a row (first was fixed, then it came back). Plus it is not the easiest and no quick task testing flashed builds on the Ondio….
|
|
11594 | Bugs | Music playback | Very Low | Last.fm scrobbling when nothing listened to | 2010-09-01 | Simon Olson | 2011-01-14 | 1 |
Task Description
The Last.fm scrobbler lists in the scrobble log songs that ive never listened to
|
|
11655 | Bugs | Database | Very Low | Data abort In sansa Fuze v2 when I insert 2 albums to t... | 2010-10-05 | Haim | 2011-08-04 | 1 |
Task Description
In my sansa Fuze v2 build 28208 when I insert some album to the playlist and after that I insert another album to the playlist I got this error massege:
Data abort at 3001AE90 FSR 0x8 (domain 0, fault 8) address 0xB0166244
thanks!
|