|
11877 | Bugs | Operating System/Drivers | Very Low | Filesystem corruption after entering USB mode | 2011-01-14 | sideral | 2011-04-18 | 2 |
Task Description
Various users on IRC recently reported cases of filesystem corruption. I have seen them as well, especially when using USB mode (I'm using a Sansa ClipV2, USB-enabled through FS#11664 ).
One strangeness I've experienced is that when my system has detected filesystem corruption, it is often enough to remove the player from USB and then replug it, without repairing the filesystem and without rebooting Rockbox; on the next USB mount, the filesystem is clean. This might indicate that some buffer is flushed too late for the USB host to see.
[EDIT: Removed previously attached patch, which is now tracked separately as FS#11883.]
|
|
11919 | Bugs | Bootloader | Very Low | No SD-Card support in USB mode after boot | 2011-02-02 | Jens Erdmann | 2011-07-15 | 2 |
Task Description
I got no SD-Card support for my E-250 after boot into USB mode. I plug in my powered off player into usb and only have access to internal storage.
If i plug in my player booted up there is no problem.
I am using daily build r29174-110131.
|
|
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
|
|
12076 | Bugs | Database | Very Low | Autoresume feature can start from wrong offset due to r... | 2011-04-19 | Rob Walker | 2011-08-08 | 2 |
Task Description
I've found a problem with the new autoresume feature in 3.8. I use it when listening to podcasts and sometimes find that it resumes from near the end of a new episode - e.g. on a 30 minute podcast it will resume from 28 or 29 minutes - usually about the place where a previous epidsode finished and I skipped past the end credits.
What I think is happening is that there is some code in the database that tries to resurrect the runtime statistics for files that have been deleted and then restored - as the last offset is in this data, it is reusing the last offset from an old episode.
I've put some more logf()s in tagcache.c in build_numeric_indices(). I can see that if the filenames don't match (line 2306) it then tries to match any 2 tags out of the 3: artist, album or title. For the podcasts, the artist and album are always the same (i.e. the producer and which one of their podcasts it is), but the title is different (i.e. "Episode 100", "Episode 101", etc). So if I've listened to Episode 100 and then deleted the file, and then add Episode 102 to the player, it matches the artist and album and so resurrects the wrong data from Episode 100.
I've disabled the resurrection based on tags (just commented it out) and the problem seems to have gone away. A better fix would be to ensure that all 3 tags or matched or to ensure that title is one of the matched tags
|
|
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.
|
|
12350 | Bugs | Recording | Very Low | Clipv2 - Rockbox duplicates samples - effectively halve... | 2011-10-26 | neum | 2011-10-27 | 2 |
Task Description
What the title says. At whatever sample rate I use (24k & 48k tested), each sample is duplicated.
|
|
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
|
|
12576 | Bugs | ID3 / meta data | Very Low | wma files with cover_art picture are not read on Sansa ... | 2012-02-03 | Ch P | 2013-03-01 | 2 |
Task Description
Player = Sansa ClipZip Rockbox current build :
Target: sansaclipzip Target id: 68 Target define: -DSANSA_CLIPZIP Memory: 8 CPU: arm Manufacturer: as3525 Version: 7d54ff0-120203 Binary: rockbox.sansa Binary size: 595788 Actual size: 595780 RAM usage: 922040 Features: alarm:backlight_brightness:crossfade:dircache:flash_storage:lcd_bitmap:lcd_non-mono:lcd_color:pitchscreen:multivolume:multidrive_usb:quickscreen:radio:recording:recording_swcodec:recording_mic:rtc:swcodec:tagcache:tc_ramcache:charging:large_plugin_buffer:ab_repeat_buttons:albumart:usb_power:usbstack gcc: arm-elf-eabi-gcc (GCC) 4.4.4 ld: GNU ar (GNU Binutils) 2.20.1.20100303 Host gcc: gcc (GCC) 4.4.4 20100630 (Red Hat 4.4.4-10) Host system: Linux
I cannot read .wma files with cover_art jpg. The same file on the Sansa ClipZip as MSC storage is read correctly by plenty of players on my Ubuntu-PC : totem, VLC, mplayer …etc… I join a file as example (with and without cover_art jpg).
|
|
12589 | Bugs | Configuration | Very Low | Conflicting config/theme | 2012-02-14 | Arne Stierman | 2012-02-15 | 2 |
Task Description
The config caused the iPod to appear frozen (frozen screen) after bootup. The iPod would boot, show the normal boot screen and then created a boot screen mixed with theme settings. Picture: http://imgur.com/E4srA the iPod refuse and refused to mount.
Fix: 1: Boot into recovery diskmode 2: Remove conflicting config.cfg 3: Reboot into normal mode
|
|
12608 | Bugs | User Interface | Very Low | %pb tag draws larger area than bitmap, showing pixel ga... | 2012-03-07 | Thomas Martitz | 2012-03-07 | 2 |
Task Description
The %pb tag has a small problem. If an image is specified but no height, the tag draws the size of a line even if larger than the the image. This leads to pixel garbage below the progressbar.
The test.wps reproduces the problem in the 320x480 sdl app The default font, 27-adobe, has to be selected probably. The wps works if a height, i.e. 20 in this case as the image height, is specified
Test.png shows the problem. test.zip is the small test theme.
|
|
12629 | Bugs | Language | Very Low | RTL support in android devices | 2012-04-01 | Haim | 2012-04-04 | 2 |
Task Description
It's Seems to be no support for RTL languages like Hebrew and Arabic in rockbox for android. Instead of מוסיקה written הקיסומ (in English - Instead of "Music" written "cisuM). I attach pictures for example:
|
|
12639 | Bugs | Themes | Very Low | Certain themes cause the WPS to not load properly and U... | 2012-04-08 | Ludovic Jacques | 2013-08-15 | 2 |
Task Description
Both issues seem to appear with any version of my theme and with any build. Let's try it with the latest version 1.30 of my theme (in attachment but also here: http://themes.rockbox.org/index.php?themeid=1585 ) and a recent build (I use version: 0c4bd3a-120406)
-Theme loading
When you load the theme for the 1st time, the WPS will never load properly (failsafe). The workaround is to turn off the device and turn it on again and then the WPS will always load properly until you reload the theme for some reasons (trying another theme and revert back to mine etc). I tried both with the full theme version and this "light" version of WPS: http://pastie.org/3747546
-USB connection (tested on Windows 7, with or without a microSD, and there isn't such an issue with the other themes)
If I plug the USB cable while the player is on or off, it will almost never mount properly. Usually the USB screen appears on my SBS, the computer recognizes a USB device is connected but either nothing appears in "my computer" or the device appears but is not accessible. When I unplug the USB cable, the Zip gets stuck on the USB screen and only reset can turn it off. Sometimes it even displays some erros like that when plugging the USB cable: "data abort at 30FSR 0x8 (domain 0, fault address 0x964176 bt pc: 0x3006AC3 bt end" , sometimes it doesn't display the USB on SBS but gets stuck on the main menu. And rarely in the same conditions it also mounts properly…
Like for WPS, I made a "light" version of SBS without the status bar and that way the Zip seems to mount and unmout properly every time! http://pastie.org/private/cauhxelaip7hrpqpcwdbxw So maybe a tag in the status bar causes the issue with USB connection?
|
|
12692 | Bugs | Recording | Very Low | Recording - positive clipping wraps around to negative ... | 2012-06-11 | dockjkox | 2012-06-12 | 2 |
Task Description
On my Sansa Clip+ 4GB, with Rockbox v3.11.2
Recording a wav file through internal microphone. If the audio signal clips at the positive limit, bad things happen: 1) Most of the time the recorded signal wraps around to a full scale negative value, which makes it sound terrible. 2) Sometimes the recorded signal wraps around to a near zero value, which still makes it sound terrible but the distortion is not so loud
3) Clipping at the negative end of the range is as you would expect - a flat line which sounds like normal digital distortion, as you would expect
See attached picture of the recorded waveform showing each of the 3 situations described above.
|
|
12758 | Bugs | Language | Very Low | Incorrect display of labels in Russian | 2012-09-28 | Sergey Gubanov | 2012-10-06 | 2 |
Task Description
In the "Graphic Equalizer" menu and when I connect the player to a computer to transfer the data labels are displayed incorrectly (instead of letters symbols, as in the screenshot). The problem occurs when I use the Russian language. The problem I see for a long time, please fix it.
Screenshot of the screen that is displayed when transferring data, I could not do. P.S. Sorry for my bad English.
|
|
12840 | Bugs | User Interface | Very Low | Lock/Unlock-Message does not disappear completely | 2013-03-11 | Conrad Kostecki | 2013-07-27 | 2 |
Task Description
Hi, I am using a Sansa Clip Zip with Rockbox 3.13. I’ve noticed, when I lock or unlock the device, the message, which indicates the current state, does not disappear completely. Its still there.
Cheers, Conrad
|
|
12856 | Bugs | Music playback | Very Low | HE-AAC plays back at wrong speed | 2013-04-21 | Julian Hughes | 2013-08-24 | 2 |
Task Description
Rockbox 3.1.3 on Clip+ (also iriver h140/340. also previous versions of rockbox).
Some HE-AAC files play back at half speed.
Example file info (comment/lyric fields removed as very long):
General Complete name : Witness_-_The_Khmer_Rouge_take_power.m4a Format : MPEG-4 Format profile : Apple audio with iTunes info Codec ID : M4A File size : 4.09 MiB Duration : 9mn 0s Overall bit rate mode : Constant Overall bit rate : 63.5 Kbps Album : Witness Album/Performer : BBC Radio Track name : The Khmer Rouge take power Grouping : News Performer : BBC World Service Composer : BBC iPlayer Genre : News Recorded date : 2013-04-18T08:50:00+01:00 Tagged date : UTC 2013-04-18 09:07:25 Writing application : Lavf55.0.100
Audio ID : 1 Format : AAC Format/Info : Advanced Audio Codec Format profile : HE-AAC / LC Codec ID : 40 Duration : 9mn 0s Duration_LastFrame : -1ms Bit rate mode : Constant Bit rate : 62.7 Kbps Channel(s) : 2 channels Channel positions : Front: L R Sampling rate : 48.0 KHz / 24.0 KHz Compression mode : Lossy Stream size : 4.04 MiB (99%)
30 second sample attached (cut with ffmpeg, full metadata)
Forum report http://forums.rockbox.org/index.php/topic,43012.0.html
|
|
12865 | Bugs | Drivers | Very Low | 5G iPod USB connection errors and full speed mode if ha... | 2013-05-24 | Boris Gjenero | 2013-05-25 | 2 |
Task Description
With my 5th generation iPod, if I connect USB while the hard drive is spinning, I often get full speed mode instead of high speed mode. This testing is with 00b8563, but I’ve observed the same problem in the past. Here’s the relevant part of Linux 3.8.0-21-generic dmesg output:
[26644.712035] usb 2-2: new high-speed USB device number 18 using ehci-pci [26644.904471] usb 2-2: device descriptor read/all, error -71 [26644.965905] ehci-pci 0000:00:1d.7: port 2 reset error -110 [26644.967780] ehci-pci 0000:00:1d.7: port 2 reset error -110 [26644.968004] ehci-pci 0000:00:1d.7: port 2 reset error -110 [26644.971577] ehci-pci 0000:00:1d.7: port 2 reset error -110 [26644.973440] ehci-pci 0000:00:1d.7: port 2 reset error -110 [26644.973459] hub 2-0:1.0: hub_port_status failed (err = -32) [26645.176048] hub 2-0:1.0: unable to enumerate USB device on port 2 [26645.428038] usb 6-2: new full-speed USB device number 8 using uhci_hcd [26645.979070] usb 6-2: not running at top speed; connect to a high speed hub [26646.009069] usb 6-2: New USB device found, idVendor=05ac, idProduct=1209 [26646.009076] usb 6-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [26646.009080] usb 6-2: Product: Rockbox media player [26646.009083] usb 6-2: Manufacturer: Rockbox.org [26646.009087] usb 6-2: SerialNumber: 100000000000A270014B32BEB [26646.024242] scsi21 : usb-storage 6-2:1.0 [26647.038109] scsi 21:0:0:0: Direct-Access TOSHIBA MK3008GAL BU11 PQ: 0 ANSI: 4 (I’ve removed the remaining USB storage messages because they don’t seem relevant)
If the hard drive is not spinning, I get high speed mode. However, there is a disconnect and the device is detected twice:
[27356.784126] usb 6-2: USB disconnect, device number 9 [27371.208044] usb 2-2: new high-speed USB device number 24 using ehci-pci [27371.347053] usb 2-2: New USB device found, idVendor=05ac, idProduct=1209 [27371.347058] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [27371.347062] usb 2-2: Product: Rockbox media player [27371.347065] usb 2-2: Manufacturer: Rockbox.org [27371.347069] usb 2-2: SerialNumber: 100000000000A270014B32BEB [27373.079038] scsi25 : usb-storage 2-2:1.0 [27373.337244] usb 2-2: USB disconnect, device number 24 [27373.640029] usb 2-2: new high-speed USB device number 25 using ehci-pci [27373.779220] usb 2-2: New USB device found, idVendor=05ac, idProduct=1209 [27373.779226] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [27373.779229] usb 2-2: Product: Rockbox media player [27373.779233] usb 2-2: Manufacturer: Rockbox.org [27373.779236] usb 2-2: SerialNumber: 100000000000A270014B32BEB [27373.820382] scsi26 : usb-storage 2-2:1.0 [27374.823266] scsi 26:0:0:0: Direct-Access TOSHIBA MK3008GAL BU11 PQ: 0 ANSI: 4 (Again, I’ve removed the remaining USB storage messages because they don’t seem relevant)
I get the same behaviour regarding high speed vs. full speed mode in Windows 7, but I’m not aware of Windows reporting other USB errors anywhere.
I was sometimes having USB difficulties that seemed to be due to contact oxidization or dust from not using the dock connector in a long time, but I don’t think that’s the cause here.
I’m attaching USB traces from WireShark using Linux usbmon. In both cases I removed all the USB mass storage stuff after get max lun because it seems irrelevant and increases file size a lot. When the result is full speed, something goes wrong after the set address response. When the result is high speed, something goes wrong after the set configuration request. In both cases the first sign of trouble is an interrupt from the USB hub.
This is on a Gigabyte GA-P35-DS3R rev V1.0 motherboard with Intel P35 + ICH9R chipset.
|
|
12974 | Bugs | Plugins | Very Low | Starfield plugin crash on c200v1 | 2014-04-19 | Franklin | 2018-07-24 | 2 |
Task Description
On my Sansa c250v1, the starfield plugin crashes at the address 0x01F80394 with a data abort. It seems that the plugin is attempting to execute data. Strangely, it does not happen in the simulator.
|
|
12998 | Bugs | Themes | Very Low | Vertical progress bar (%pb) glitches at the start of a ... | 2014-09-16 | Guillaume Cocatre-Zilgien | 2014-09-16 | 2 |
Task Description
Consider the following theme markup:
%Vl(progressbar,306,156,10,80,-) %pb(0,0,10,80,progressbar.bmp,vertical)
That draws a vertical progress bar that will get filled from bottom to top. When a song starts to play, the progress bar is one pixel high, at the correct position (at the bottom of the viewport). That 1px-high image quickly jumps up one pixel (moves up by one pixel), then comes back down one pixel (at the correct position) whenever the progress percentage is high enough. The progress bar then displays normally and grows as the song is playing. See attached screenshots.
Expected behavior: the position of the progress bar (relative to the viewport) should not change. The bug has been observed in the iPod Classic and Clip Zip sims (builds 1bc89bd and 77bfff5) as well on the actual devices. Inverting the progress bar (with the "invert" parameter) shows the correct behavior (inverted bar with no such glitch).
Affected themes: Ash (iPod Classic), SugarBrown (Clip Zip).
|
|
13003 | Bugs | User Interface | Very Low | Scrolling line broken if put directly after sublines. | 2014-09-24 | Oid Maps | 2014-09-24 | 2 |
Task Description
## This was tried out with Sansa Fuzev2 simulator version d392da8-140922, built from git on a 64 bit Linux system ##
I discovered something which seems to be a bug somewhere in the place where WPS get interpreted or rendered.
When I use a scrolling line just after a line containing sublines, the scrolling line stops scrolling as soon as the sublines change the first time.
Below are steps to reproduce it on the UI simulator for the Sansa Fuzev2. I think it also works without using a clear configuration. I haven’t tested with a real device, only with the simulator.
Attached are a .wps-file showing the buggy behaviour (’scrollline_after_sublines_bug.buggy.wps’), and a .wps-file working correctly (’scrollline_after_sublines_bug.workaround.wps’), which are the same files as quoted below.
STEPS TO REPRODUCE:
(0) Use Sansa Fuzev2 simulator version d392da8-140922, build from git on a 64 bit Linux system.
(1) Use a clear configuration, so erase
.rockbox/.playlist_control
.rockbox/config.cfg
.rockbox/nvram.bin
.rockbox/database.ignore
in your 'simdisk' directory.
(2) Start the rockbox UI simulator
(3) Change the theme to ‘rockbox_failsafe’, i.e. in the menu, do the following:
‘Settings’ → ‘Theme Settings’ → ‘Browse Theme Files’ → ‘rockbox_failsafe.cfg’
‘Settings’ → ‘Theme Settings’ → ‘While Playing Screen’ → ‘rockbox_failsafe.wps’
‘Settings’ → ‘Theme Settings’ → ‘Radio Screen’ → ‘rockbox_failsafe.fms’
‘Settings’ → ‘Theme Settings’ → ‘Base Skin’ → ‘rockbox_failsafe.sbs’
(4) Use the following .wps-file as the “While Playing Screen” skin:
=⇒ # Two sublines: Text1;Text2 # A long line, scrolling: %sA very long text which is meant to scroll because it is longer than the screen is wide. # Another line of just text (Not needed to reproduce the bug, but if it is swapped with the long line above, the long line scrolles correctly): Textline. #### Here the following Bug appears: # When the Line ‘Text1;Text2’ changes the sublines the first time, the subsequent line stops scrolling. It happens when the sublines change; as when you use ‘%t(5)Text1;Text2’, the scrolling stops only after 5 seconds, when the sublines actually change. ⇐=
Workaround: (4a) Put the scrolling line not directly after a line with sublines. The following .wps as the “While Playing Screen” skin works:
=⇒ # Two sublines: Text1;Text2 # Another line of just text. Needed to make the long line scrolling correctly: Textline. # A long line, scrolling: %sA very long text which is meant to scroll because it is longer than the screen is wide. #### Here the bug does not appear, the long line scrolls corretly. But when the long scrolling line is put just below the line with the sublines, it stops scrolling as soon as the sublines change for the first time. ⇐=
|
|
13022 | Bugs | User Interface | Very Low | Replaygain display error in WPS in Musepack files when ... | 2015-01-04 | Abel | 2015-01-04 | 2 |
Task Description
I use the attached custom WPS that displays the active Replaygain value and type next to the track number.
When playing mpc files created by foobar2000 with the tracknumber/totaltracks tag format, if the track# is 10 or higher and the applied gain negative (as in the attached mpc), mangled characters are displayed between the gain value and type, eg:
10/12 -2.00 dB *gibberish* (Album)
This is reproducible with the latest simulator build d0fffd6-150104 but I only recently noticed the issue and don't know when it began. I have an old sim build 935d8be-121229 and it works correctly there.
|
|
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.
|
|
13076 | Bugs | Operating System/Drivers | Very Low | iPod Classic (160GB Thick) - PANIC - usb_storage_init_c... | 2016-07-13 | A Man Eating Duck | 2016-07-13 | 2 |
Task Description
Hi,
I have installed Rockbox build 0F89B04-160628 using this (https://files.freemyipod.org/~user890104/bootloader-ipodclassic.html) method.
I have created a dynamic playlist (Database > long select artist > current playlist > Queue Shuffled). Play and then pause the music and then hold the play button down to shutdown rockbox. Plug in USB cable from your computer (Win10) in to the iPod and the iPod should start powering on and then a white *panic* screen should appear.
Workaround is to have Rockbox already fully booted before plugging in a USB cable from the computer.
|
|
13097 | Bugs | Operating System/Drivers | Very Low | PANIC white screen when plugging a non supported SD car... | 2017-01-12 | Mario C. | 2020-07-07 | 2 |
Task Description
Creative ZEN Daily build: rockbox-creativezen-20170112
Bug description: When plugging any dummy plastic or a non supported SD card, the device freezes and displays a white screen with a “PANIC” error message. Plugging a standard SD card works fine. To restore the system, you have to use a paper clip to do a hardware reset and turn the device on again.
|
|
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.
|
|
13198 | Bugs | Utils | Very Low | ipodpatcher and Rockbox Utility do not work in macOS Ca... | 2020-05-22 | Robert McGovern | 2020-06-29 | 1 |
Task Description
Neither of the tools, ipodpatcher or Rockbox Utility 1.4.0, work on macOS Catalina.
Catalina removed 32bit support.
Using ipodpatcher generates the following error:
bash-3.2$ ./ipodpatcher
bash: ./ipodpatcher: Bad CPU type in executable
And Rockbox Utility has a white circle with a line through it indicating that it does not work with this version of the OS.
(see attached file)
|
|
12961 | Bugs | Operating System/Drivers | Very Low | Rockbox Android runs on emulator but not on my phone. | 2014-03-18 | Deo Favente | 2014-04-20 | 1 |
Task Description
For the last couple of weeks, I can’t get Rockbox to run anymore on my phone. I use Rasher’s build, which used to work fine. I even built one on my own, but it still doesn’t work. I tried running it on the emulator and it worked fine. I am not sure what is wrong, reading the logcat gets me nowhere because I don’t really understand most of it. I have attached the logcat here. I do not know if I’m the only one having this problem.
I tried various method to get it working again on my phone, I even tried resetting my phone in case if I messed up somewhere. I also noticed this when I was trying out another ROM for my phone, which runs on Gingerbread 2.3.7. I thought it was the ROM’s problem, so I changed back to the ROM that I frequently use, which used to had no problems at all running Rockbox. The last working build was on 01 March 2014, after that, nothing works anymore on my phone.
The only possibility that I can think of is that my phone is outdated and the kernel or the ROM is missing something crucial to run the latest Rockbox builds. Other than that, I have no idea. I hope the logcat attached could help you identify this problem. Thank you in advance.
Build version: 915bc09-140318 Last working build (on phone): unknown revision, dated 01 March 2014 Phone: Sony Ericsson Xperia X10 Android: 4.1.2 Jelly Bean (CyanogenMod 10) Emulator: 4.1.2 (API 16) with same screen dimension.
|
|
13062 | Bugs | Codecs | Very Low | ogg vorbis codec and eq (bass noise) | 2015-12-01 | pureman | 2019-08-04 | 1 |
Task Description
Create silence in Audacity program (Generate → Silence). Convert the wav file to ogg vorbis file. Put into the sansa clip+ player wav and Ogg files. Turn on the equalizer and set 32 hz, 64 hz, 125 hz in the 0.5-2.0. Turn on maximum volume. Listen to the silence of wav file. Absolute silence. Listen Ogg Vorbis file - hear the noise (like the wind). It’s bug with only ogg vorbis. mp3, flac, mp4 is absolute silence. On a musical files it’s additional noise. Ogg vorbis is economical of disk space. Testing on a sansa clip+ with 2GB.
|
|
13136 | Bugs | Playlists | Very Low | Playlist position not saved on shutdown when using rela... | 2017-11-13 | Dean Tersigni | 2018-08-05 | 1 |
Task Description
Ordinarily, when Rockbox is shut off and turned back on, it will remember the position in the last-played song, and begin playing from where you left off. However, in the latest build, Rockbox doesn't remember the last track that was playing if the file used a relative path. This happens on every version of 3.14 including the current daily build (2017-11-13).
Here is how the error can be reproduced:
Have a folder with two songs. Then, in the parent folder, create two m3u playlists named "absolute.m3u" and "relative.m3u". .\ —absolute.m3u —relative.m3u —MUSIC\ ——song1.ogg ——song2.ogg
In the absolute.m3u playlist, add the following lines: MUSIC\song1.ogg MUSIC\song2.ogg
In the relative.m3u playlist, add the following lines: .\MUSIC\song1.ogg .\MUSIC\song2.ogg
To see expected behavior:
1.) Open the files list, and run absolute.m3u and song1.ogg begins playing. 2.) Push right to start song2.ogg. Let it play a few seconds in. 3.) Turn off your device by pressing power. 4.) Turn on your device with the power button. 5.) song2.ogg continues to play the same song at the same location as when it was shut off.
To reproduce the bug:
1.) Open the files list, and run relative.m3u and song 1 begins playing. 2.) Push right to start song2.ogg. Let it play a few seconds in. 3.) Turn off your device by pressing power. 4.) Turn on your device with the power button. 5.) song1.ogg plays from the very beginning.
The file format of the songs doesn't seem to matter (I've tested ogg and mp3).
|
|
13196 | Bugs | User Interface | Very Low | Xduoo X3ii: album art doesn't show for some jpgs in con... | 2020-05-08 | Johannes Rauh | 2020-07-17 | 1 |
Task Description
I store the album art by putting a folder.jpg file in the album's directory. Any WPS on other players shows the cover pictures properly if album art is enabled in the theme.
I am aware of caveats like progressive jpgs, that are not supported by RB.
In the attached zip file, there are four directories with a folder.jpg file and a free opus file for demonstration purposes.
All pictures show up fine on my Sansa E200 (v1) using CabbieV2 or lebellium_Samsung-like. However, on my XduOO x3ii the pictures are not displayed for the examples 1 - 3, but show for example 4.
None of the jpgs are progressive and I cannot figure out a difference between 1-3 and 4.
I don't know how to debug this further myself, but would be happy doing any furter experiments.
This is true for the current dev builds, e.g. b450707955.
|
|
13219 | Bugs | Codecs | Very Low | APE 24/44.1 - harsh noise | 2020-07-25 | Atas | 2020-07-25 | 1 |
Task Description
Playing APE 24/44.1 with harsh noise in different parts of the track. If you decode APE file to WAV using the codec console, then there are no problems. So the matter is in the player’s APE decoder.
At 24/48 everything is fine.
|
|
6083 | Patches | Music playback | Very Low | Announcing tracks (DJ feature) | 2006-09-28 | Jonas Häggqvist | 2008-12-16 | 1 |
Task Description
This patch was meant to add a DJ type feature, that would announce each song if a “.talk” clip exists for it. Unfortunately, it’s not as simple as calling talk_file() each time the track changes, because that breaks playback because of CPU inadequacy. Works mostly fine for WAV files though.
The solution is probably to halt playback until the clip has been played, but that’s beyond me.
I have not added a settings interface to this, since the feature is really very incomplete. I’d love if someone would pick it up from here though.
|
|
6585 | Patches | Plugins | Very Low | Dictionary stardict converter | 2007-01-28 | Tomasz Moń | 2011-12-05 | 1 |
Task Description
There’re many dictionaries for http://stardict.sourceforge.net/Dictionaries.php as many of them are GPL‘ed I would like to request for converter for those so it’ll be possible to use them with RockboxDictionary
|
|
7180 | Patches | Plugins | Very Low | "Target" word game | 2007-05-17 | Will Robertson | 2007-05-17 | 1 |
Task Description
This is a rockbox version of the simple word game called “Target”. Rules: (stolen from The Age newspaper website) “See how many words of four letters or more can you make from the letters shown in the grids. In making a word, each letter must be used once only. The word must contain the centre letter and there must be at least one nine-letter word in the list. No plurals or verb forms ending with “s”; no words with initial capitals and no words with a hyphen or apostrophe are permitted. The first word of a phrase is permitted (eg inkjet in inkjet printer).”
Currently it only works on H300, iPod Photo and iPod 5g DAPs, but I plan to expand this to all bitmap targets soon enough. The games are either user selected or loaded from the file target_wordlist.dat, I’ve included 10 puzzles, but there are heaps more on The Age newpaper’s site (www.theage.com.au).
|
|
7203 | Patches | Plugins | Very Low | New game for Color-LCD-Rockboxes | 2007-05-22 | Andreas Kruschinski | 2007-06-28 | 1 |
Task Description
This is the game Squarebloxx. It works on Color-LCDs only because colors are an essential part of the game. I tested it in the Simulator for all the color Boxes. I also tested it on my H340. In the game you have to mark parts of an array of tiles. If the tiles in the corners of the mark are the same color, the marked area is done. If all tiles are done the level is finished. Please give me feedback and report bugs.
Thanks Krush
|
|
7497 | Patches | Applications | Very Low | Add a magic string to bootloader version to enable loca... | 2007-07-28 | Dave Hooper | 2008-08-12 | 1 |
Task Description
Simple patch to add RBBLver prefix + suffix to the bootloader version string. rbutil can scan the binary bootloader file to locate this string to determine the bootloader version. download.rockbox.org can now be updated to include bootloader.version files alongside the binaries (e.g. extract the bootloader version from the binary using od -S 6 | grep RBBLver )
|
|
7650 | Patches | Build environment | Very Low | Script to aid in building voices (especially helpful fo... | 2007-08-24 | Jonas Häggqvist | 2007-08-28 | 1 |
Task Description
If you’re willing to produce a Human voice file (spoken by you or someone you know), this script will be particularly helpful. It expects you to put it in a directory with a subdirectory containing .wav files for all voice strings, named by the contents of the string (this will be problematic on FAT/NTFS, but could be fixed).
When run, it will check to see if all needed strings are available, and if they are, it will generate a voice-file for all targets. If they aren’t, it will print out a list of strings missing (to be recorded and put in the subdirectory). This list will also be put in the file “missingstrings.txt”, one on each line.
This might be suitable for inclusion in tools/
Edit: Script deleted. Will upload again soonish.
|
|
7877 | Patches | Plugins | Very Low | Being able to adjust volume while using stopwatch plugi... | 2007-10-01 | Håkan Hagström | 2008-12-12 | 1 |
Task Description
It would be nice to be able to change volume while using the stopwatch plugin. If I don’t have the volume perfectly adjusted when starting my jogging round, I have to choose between running the rest of my laps with too low/high volume or discarding my times to change it, as the scroll wheel doesn’t have any function in the plugin.
|
|
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”.
|
|
8830 | Patches | Drivers | Very Low | Sansa: DMA support for sd-card data access (experimenta... | 2008-03-30 | Toni | 2009-02-23 | 1 |
Task Description
First approach, to add dma read/write disk access to the sansa.
There are some restrictions on the dma functionality with this patch: - only stabile at 80MHz ⇒ cpu boost control added to the driver - only on 16byte aligned data ptr ⇒ all data are copied to/from aligned memory - no interrupt support ⇒ using polling method
At 30MHz the driver is much more stable with the following PLL settings: PLL_CONTROL = 0x8a221e0c; /* 30 MHz = (48MHz/12*30) / 4 */ CLOCK_SOURCE = 0×40007777; /* source #1, #2, #3, #4: PLL (#4 active) */
Reading seems to be in general more reliable than writing of the cards. The data throughput is a little worse than in the current implementation. This is partly due to the data copying. The sporadical ‘2bytes inserted’ problem with the USB file transfer is still there. Interestingly @30MHz with the above settings, there is another problem: sporadically ‘2bytes missing’ and ‘2bytes inserted’. Perhaps the DMA transfer needs some more initialization for proper synchronization.
|
|
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.
|
|
8968 | Patches | User Interface | Very Low | inline settings | 2008-05-06 | Jonathan Gordon | 2010-06-06 | 1 |
Task Description
this patch adds inline settings to the any menu items are settings it will show a 2nd line for that menu which will show the value of the elected setting, or —→ for submenus/functions.
notes about this uses too many hacky-tweaks to be considered doesnt let you disable item voiceing is probably doesnt let you change the setting, you still have to enter the setting screen to change it
DONT send this topic off on a tangent like the last UI change tasks, and any requests for resyncs will be deleted. (I’m guessing this will stay here till at least devcon)
|
|
8991 | Patches | Plugins | Very Low | caps+symbol shifts for ZXBox | 2008-05-14 | Anton Romanov | 2008-05-14 | 1 |
Task Description
adds ability to use “Caps Shift” (displayed as ‘C’ in vkeyboard) and “Symbol Shift” ( ‘H’ ) so Jumping Jack can be played http://forums.rockbox.org/index.php?topic=16817.0
|