|
12749 | Bugs | Music playback | Very Low | Android Tablet with Froyo: Playback pauses briefly ever... | 2012-09-07 | Thomas Heuving | 2012-09-07 | |
Task Description
On my newly purchased (but used) Archos Internet Tablet 70 250GB with Android Version 2.2.? (Froyo) I installed the daily build of rasher. Everything works so far, but playback of MP3 (mostly 160 Kbit CBR and ~200 Kbit VBR) pauses briefly every 2 to 3 minutes. I just reformatted the drive, which now has ext3 and that seems to end the pause which I got on FAT32 after ~4 Seconds of every new song, but every 3 minutes or so the playbacks stops for about a second - very annoying. Don't tried other codecs as I don't own any files other than MP3. I was in the developers menu during one of this pauses, looking at the list of the contributors. The old names fly away to the right, but this was frozen also during this one second timespan - as if the rockbox-process was paused entirely or so.
|
|
12746 | Bugs | Games | Very Low | RockDoom Crashes on iPod Classic/6G | 2012-09-02 | Franklyn | 2014-04-30 | |
Task Description
When trying to start RockDoom on the iPod Classic, Doom appears to load normally until the iPod crashes and says "Prefetch abort at 71D0BF24 FSR (domain 0, fault 5)". Build ver. 8abdd9b-120902
|
|
12727 | Bugs | Games | Very Low | calc_strength is Buggy in Plugin Superdom | 2012-08-12 | Uwe Schächterle | 2012-08-12 | |
Task Description
If you add a tank or a plane on a field the strenght does not increase at any time ( as expected ). E.g. place a tank on a field with a farm.
The Bug is located in superdom.c in lines 438 - 457
static int calc_strength(int colour, int x, int y) {
int a, b, score=0;
for (a = -1; a < 2; a++) {
for (b = -1; b < 2; b++) {
if ((b == 0 || a == 0) &&
(board[x + a][y + b].colour == colour)) {
score += 10;
if(board[x + a][y + b].tank || board[x + a][y + b].farm) // <-- this is the BUG
score += 30;
if(board[x + a][y + b].plane || board[x + a][y + b].ind) // <-- this is the BUG
score += 40;
if(board[x + a][y + b].nuke)
score += 20;
if(board[x + a][y + b].men)
score += (board[x + a][y + b].men*133/1000);
}
}
}
return score;
}
The Bug should be fixed by using this lines instead :
static int calc_strength(int colour, int x, int y) {
int a, b, score=0;
for (a = -1; a < 2; a++) {
for (b = -1; b < 2; b++) {
if ((b == 0 || a == 0) &&
(board[x + a][y + b].colour == colour)) {
score += 10;
if(board[x + a][y + b].tank)
score += 30;
if(board[x + a][y + b].farm)
score += 30;
if(board[x + a][y + b].plane)
score += 40;
if(board[x + a][y + b].ind)
score += 40;
if(board[x + a][y + b].nuke)
score += 20;
if(board[x + a][y + b].men)
score += (board[x + a][y + b].men*133/1000);
}
}
}
return score;
}
|
|
12722 | Bugs | Music playback | Very Low | FLAC playback not gapless anynore | 2012-07-31 | Griggs | 2012-08-04 | |
Task Description
When playing FLAC audio tracks, they are no longer playing gapless. There seems to be about a half second gap between tracks.
iPod Video 5G Rockbox 3.11.2 / r21506 Bootloader 2010-05-25T22:02:55
Issue is present even when using default theme and font; Docked or not docked.
I tried increasing the buffer and that had no affect.
|
|
12720 | Bugs | Plugins | Very Low | Lrcplayer opens and plays USLT tag instead of SYLT tag ... | 2012-07-26 | Vladimír Mikuláš | 2012-09-08 | 1 |
Task Description
I have sansa clip+. Lrcplayer opens and plays USLT tag instead of SYLT tag if there are both in mp3 file and no external lyrics(.lrc, .lrc8, .snc, .txt) so lyrics which play are not synchronized. Please make SYLT tag opens and plays defaultly instead of USLT tag.
|
|
12714 | Bugs | Operating System/Drivers | Very Low | Sansa Fuze V1 USB Fails on daily build (ad46064-120710) | 2012-07-13 | C Gray | 2013-07-07 | |
Task Description
I upgraded my Sansa Fuze V1 (AMSV1) from the current stable release 3.11.2 to Daily build (ad46064-120710). With Rockbox powered on, any attempt to connect USB to my WinXP fails. The USB icon is displayed briefly, followed immediately by the white screen - Undefined Instruction at 0000003C. This is repeatable. Recovery is via a power down.
Note: the USB connection works fine with the current stable release 3.11.2 and this is the first daily build I have tried,
|
|
12713 | Bugs | Drivers | Very Low | Player hangs on usb screen when disconnecting | 2012-07-09 | Norbert Spilski | 2012-11-12 | |
Task Description
Daily build: c413591-120705 and earlies. When I connect powered down my Fuze V1 and disconnect from USB, it hangs displaying USB screen. I must hold power switch for several seconds to power off player. Tested on two different machines with windows7 x64. When I connect powered on player everything works perfectly.
|
|
12712 | Bugs | Database | Very Low | Audio files are not removed from the database if databa... | 2012-07-03 | Alex Mayer | 2012-07-03 | |
Task Description
Experienced Results: I have 2 folders(lets call them FolderA and FolderB) each containing audio files. FolderA and FolderB are both on the root of my drive Neither one has a database.ignore file in it. I go to settings → general settings → database → update now All files are added to the database as expected …But i realize i dont want FolderB to show up in the database. I add a database.ignore file at /FolderB/database.ignore Then I go back in and update the database again(settings → general settings → database → update now) all of my audio files still show up in the database(including the ones in FolderB with the database.ignore file)
Expected Results: After adding the database.ignore file to FolderB and updating the database(settings → general settings → database → update now) the audio files in FolderB should no longer appear in the database
Summery: Any files in a folder containing a database.ignore file should be removed from the database on update
Rockbox Info: Build Version: daily / e3cddc2-120701
|
|
12711 | Bugs | Settings | Very Low | Some settings do not work properly from shortcut menu | 2012-06-30 | Oscar | 2012-06-30 | |
Task Description
Settings such as "eq enabled" and "replaygain type" do not apply to a playing track when selected from shortcut menu, although the setting does appear to have changed when checking in the settings menu. The audio remains unchanged when changing the settings. However, when changing the same settings via the settings menu they function correctly (e.g. audio noticeably changes from loud to quiet after a few seconds).
Also, while displaying "debug info" on the wps, I noticed that %rg (replaygain value in dB) DOES change when the replaygain is changed via the shortcut menu, even though the audio doesn't change. (Both %rg and the audio change when the same setting is changed via the settings menu).
NB Some settings DO work, such as bass and treble.
Problem noticed on Sansa Clip Zip (build 2f1da04-120627), UiSimulator of Sansa Clip Zip (build fa17cb9M-120627).
|
|
12708 | Bugs | Music playback | Very Low | iPod Nano 2G Swapped Channels | 2012-06-27 | PBCNX-MAN | 2013-11-02 | |
Task Description
I’ve been using the latest dev builds everyday for iPod Nano 2G and still encountering “Swapped Channels” on Playback (e.g. Left Channel → Right Headphone / Right Channel → Left Headphone).
Used latest build 5785cfb-120625
|
|
12703 | Bugs | Battery/Charging | Very Low | Clip Zip Crash and Device Not Succesfully installed | 2012-06-21 | Brian van den Berg | 2013-07-20 | 1 |
Task Description
There is a bug with the clip zip that when you plug a device in for the first time it doesn't install succesfull the driver and when i unplug it the device crashes and needs a hard reset
|
|
12702 | Bugs | User Interface | Very Low | playlist catalgoue silently fails to save files with < ... | 2012-06-19 | drewbenn | 2017-01-06 | |
Task Description
I'm running Rockbox 3.11.2 on a Sansa Clip+. I followed these steps: - go to the Main Menu - Files - long press on <microSD1> - Playlist Catalogue - Add to New Playlist I tried to save the playlist with a long press of the select button (not sure of the button's actual name; it is the button in the middle of the 4-way controller and the one that is usually used to select the highlighted option). I was returned to the Files menu. The playlist did not get saved, and there was no error explaining why.
As a result, I spent a long time assuming that long press of select was a "cancel" action, and tried short and long presses of every other button trying to save the playlist.
Workaround: instead of accepting the suggested filename, remove the "<" and ">" characters from the auto-entered filename ("/Playlists/<microSD1>.m3u8") to be able to save the playlist.
Suggested fixes: The filename suggested by Rockbox should not include "<", ">", or other un-saveable characters. In addition, if the user tries to save a file with invalid characters, a warning or error message should be posted (like the "Cancelled" message that briefly pops up when the power button is pressed to exit from the set-filename screen).
|
|
12700 | Bugs | Music playback | Very Low | Crash when stopping playback of ogg vorbis files | 2012-06-18 | Dieter | 2012-06-18 | |
Task Description
Rockbox crashes when stopping playback of ogg vorbis files. This happens both, when I stop playback through long pressing the play button or simply if the last track in the current playlist is finished. It does not happen when stopping playback of mp3 files. Pausing does not cause a crash, only stopping does.
I reported this problem already in FS#12669 which was closed since it was asserted to be fixed, but it wasn't and isn't fixed for me.
The bug occured in version 688302a of 04/08 13:15. All earlier versions (tested back to bb0e4cc of 04/05) are working and later versions are crashing. I just tested current version e5d6e42 and Rockbox still crashes.
I have a Samsung Galaxy S running Android 2.3.7 (CyanogenMod CM7.2.0)
|
|
12697 | Bugs | Recording | Very Low | SanDisk Sansa Clip+ 48000Hz rec 2.35% fast, but 44100Hz... | 2012-06-13 | Gordon McDowell | 2012-06-13 | |
Task Description
Player Type = Sansa Clip+ (not available in chooser when submitting). Release = 3.11.2
Recording at 48kHz results in audio that is 2.35% too fast. I believe it is recording at 49155Hz instead of 48000Hz. Recording at 44.1 kHz does not have this problem.
I have verified by putting 2 identical Clip+ in front of me, one set to rec at 44.1 other at 48.0. When playing back audio (on PC) difference in pitch is (barely) audible. And the audio falls out of sync as recording progresses (in video editor).
For now I’ll be happy to only record at 44.1kHz, but maybe 48kHz recording should either be fixed or dropped from Clip+ options.
|
|
12695 | Bugs | User Interface | Very Low | Drawing some of the WPS UI over lists on iPod Classic/C... | 2012-06-12 | Vencislav Atanasov | 2014-03-31 | 3 |
Task Description
While I am playing some song on my iPod classic 2G, and scrolling through a list (even the main menu, but the glitch there is somehow different), if I unplug and then replug the headphones, some of the WPS UI gets drawn over the current view. I'm attaching a screenshot to make it more clear. It only happens while playing a song. I'm using build bf6abf7 (most recent at the moment). Also attaching my config.
|
|
12693 | Bugs | Playlists | Very Low | Error accessing playlist control file after USB connect... | 2012-06-11 | Bertrik Sikken | 2012-07-18 | |
Task Description
Current developer build (2012-06-10), on Sansa Clip Zip While audio is playing, connecting USB and disconnecting it again causes a splash with message “Error accessing playlist control file”. Sometimes followed by a hard crash (like undefined instruction).
Initial analysis shows that the problem occurs in playlist.c:get_filename. An lseek in the playlist control file fails. This lseek fails because the file descriptor (fd) was closed during USB connection. On receiving a SYS_USB_CONNECTED event in apps/misc.c, function system_flush() calls playlist_shutdown(). So the playlist subsystem seems to have been de-initialised during USB connect, but not completely, causing problems when the playlist subsystem resumes during USB disconnect.
This is reproducible on the simulator.
|
|
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.
|
|
12688 | Bugs | Playlists | Very Low | "Queue" sometimes results in songs being placed before ... | 2012-06-04 | Sebastian | 2012-06-14 | |
Task Description
I have a Sansa e260 player and currently Rockbox 3.11.2 running on it. I got a shuffled playlist with all of my music in it (added to the playlist using the insert function and reshuffled afterwards). When I want to listen to one or more specific songs, I enqueue them with the queue function (in play mode select song, album etc. from database → context menu → Current playlist → Queue). This works fine in most cases but when there had already been a queue that ended the song before, the song that I want to enqueue is placed before the currently playing song (which is the first song not any more part of the former queue) instead of after it. If I use the feature "Queue next" the song, album or whatever is correctly placed after the currently playing song. After having used "Queue next" once, other songs enqueued with the "Queue" command may be also placed correctly at the end of the new queue. I believe to remember some strange behavior though when in that case the song was also incorrectly placed as described above. I tried mp3 and ogg files and the behavior was the same regardless of which file format was used. It also doesn't matter if the song is played from the player's memory or from micro SD card. As soon as the second song after the queue is playing, enqueued content is correctly placed after the currently playing song again. I have experienced this behavior for a long time now and with different Rockbox builds on my player.
To reproduce the behavior: 1. Have a reshuffled playlist (created using "Insert" command, then selecting "Playlist" → "Reshuffle" from the wps context menu) with some songs in it 2. Listen to one of these songs which is not the first or last one in the playlist 3. Enqueue a song from your database via the context menu (This song should be placed directly after the currently playing one) 4. Play the enqueued song (or a part of it) 5. Play the next song in playlist 6. Now enqueue another song (This song should now be placed directly before the currently playing song in the playlist)
I have hardly any programming experience at all but it seems to me that somehow there exists some sort of marker that indicates the end of a queue and that this marker is not erased immediately after a queue ends but "one song too late"?
|
|
12678 | Bugs | Music playback | Very Low | Unable to play WMA Pro (possibly VBR) | 2012-05-18 | Albert Meltzer | 2012-05-20 | 1 |
Task Description
The player (Sansa Clip Zip) appears to refuse or unable to play some of my WMA tracks; as far as I can tell, the problem is specific to my WMA Pro files only as it plays none of them (but works with WMA2 successfully). I have attached one of the examples.
I understand that a similar issue was reported recently (in FS#12619 ) although, in my case, the player doesn’t start playing and skips to the next immediately, rather than playing part of the track.
|
|
12672 | Bugs | User Interface | Very Low | In the Android version the settings submenu with the pl... | 2012-05-11 | Dieter | 2012-05-11 | |
Task Description
The settings submenu with the playlist viewer settings like “show icons”, “show indices” and “track display” to select between file name only and full path for playlist entries is not available in the playlist viewer menu in the Android version.
So these settings cannot be changed.
This happens in all version I tried until now (latest was a12b2a5).
|
|
12671 | Bugs | User Interface | Very Low | In Rockbox for Android it is not possible to highlight ... | 2012-05-11 | Dieter | 2012-05-21 | |
Task Description
In Rockbox for Android it is not possible to highlight an entry in a list without selecting (entering) it.
For example, if I am in the playlist viewer showing the list of just playing songs with my ipod (running rockbox) I was able to scroll through the list which moved the higligting bar through the list and then I could select the desired entry by pressing enter. With the touchscreen I found no way only to highlight a certain entry.
This is important if all entries are very long and have the same starting text. For example "Ludwig von Beethoven, Symphony No. 9 - 1. Adagio" cannot be distinguished from "Ludwig von Beethoven, Symphony No. 9 - 2. Andante" in the playlist viewer since the distinguishing part is cut off. With my ipod I could highlight the entries with the scroll wheel and the highlighted line started horizontally scrolling so I could see the complete text. With the Android port I can only touch the line, but touching the line does not only highlight it but also selects it and so starts playing.
This problem also exists in other list with long entries and happens with all version I compiled until now (latest was a12b2a5).
|
|
12658 | Bugs | Music playback | Very Low | Sansa Fuze v2 / AMSv2 soft freezing or crashing | 2012-04-29 | John Romero | 2012-04-30 | |
Task Description
Not sure how long this chronic bug has gone on but at least before the dubious move to git from subversion. I have had trouble on my V2s with freezing (appears like they are loading in the middle of a song but nothing is happening and you can't do anything) while playing and recently freezing when adding tracks to a playlist. I can take the microSD/transflash card out and stick it into a V1 Fuze and there is no problem, it will play forever and never crash. The V2s will crash minutes after playing, sometimes a track will finish, sometimes the same track will get stuck, one time it happened less than a second after beginning to play. No white screen of death, just a soft freeze and a blinking loading indicator. If you fiddle with it it will stop blinking and become utterly unresponsive. Have tried formatting cards, etc. V1 players work fine, V2 players are now junk under this firmware.
I don't know exactly how long this problem has been going on but it has been getting worse. Before the 30,000th SVN release, perhaps somewhere around 28000, I would be getting crashes occasionally with the V2s but nothing like this. My v2 players will unconditionally crash now after a short time. Rockbox is unusable for me on my V2 Fuze players. A lot of digging may be necessary to get to the bottom of this problem because I think it is buried under a lot of newer modifications.
I will not submit any sample music files (I know you guys always ask), this is problem exclusive to AMSv2 and I am sure by now that some Rockbox developers are aware of some issues that could be attributed to this sort of problem.
|
|
12657 | Bugs | Themes | Very Low | ThinBasic causes panic on Nano 1g | 2012-04-28 | Hugo Platzer | 2012-06-02 | 1 |
Task Description
Every time I try to set my theme to ThinBasic in Rockbox 3.11.2 on my nano 1g, a panic occurs. I only tried this in 3.11.2 so I'm not sure if older versions have this problem too.
|
|
12656 | Bugs | Plugins | Very Low | robotfindskitten game not working properly anymore | 2012-04-28 | Hugo Platzer | 2012-04-28 | |
Task Description
After updating Rockbox from 3.10 to 3.11.2 on my Ipod Nano 1g i noticed the robotfindskitten game did not work as it should anymore. When robot has touched the first object, the text on the top does not change anymore when touching more objects until he finds kitten. The kitten animation also is hidden behind the text of the first object and the scrolling of the text starts at the end, not at the beginning. I think it worked fine in 3.10, or at least in 3.9.
Please investigate this problem. Thanks, Hugo
|
|
12653 | Bugs | Music playback | Very Low | Rockbox randomly crashes during playback | 2012-04-24 | Bruno Gil | 2013-09-02 | |
Task Description
So, I have a Clip Zip at the moment. Been using rockbox on it since day 1, and since day one i've always had an issue: during playback, when accessing files from the SD card, the player randomly freezes. It's not always, it's not when accessing the same files or some specific characteristic shared by them, it just appears to be random. When it freezes, the LCD usually still responds to my commands (i can access menus, see the file info, even change song and it will display in the playback screen), but the actual playback doesn't, and I eventually have to hard reset it. I guess it's some kind of SD compatibility issues: I have an 8GB class 4 PNY. I know it's not the own card's problem since it worked perfectly on my Clip+ and does on my Android Cellphone. I've been updating daily builds for this device at least once a week since I got it, and it happens with every build.
|
|
12649 | Bugs | Music playback | Very Low | Some MIDI files crash the player | 2012-04-20 | Fergus Duniho | 2012-04-21 | |
Task Description
I'm using a Sansa Clip Zip, which hasn't been added to the Player Type list. I've noticed that several MIDI files crash the player, reporting OUT OF MEMORY and MALLOC BARF errors. This is more likely to happen with MIDI files with many instruments, such as orchestral pieces. One example is a MIDI file for Debussy's La Mer. It tries to load all instruments into memory before playing and will crash without playing anything. I don't know if this can be fixed with better memory management or if my player just has too little RAM.
|
|
12641 | Bugs | User Interface | Very Low | Shortcuts replacing Quick Screen - exiting always retur... | 2012-04-10 | Václav Brožík | 2012-04-10 | |
Task Description
When you configure Shortcuts to replace the Quick Screen then there is this unwanted behaviour: Exiting the Shortcuts menu always returns to the Main Menu, not to the screen from which the Shortcuts menu was invoked by pressing the Quick Screen key combination.
Tested on: Sansa Clip+ Builds tested: latest daily - b7bc240-120409
latest current - 2406005-120410
|
|
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?
|
|
12637 | Bugs | Simulator | Very Low | Some Keypress functions and charge increment no longer ... | 2012-04-06 | Cameron Smith | 2012-04-06 | |
Task Description
Sorry, not sure in which build part of this ceased to function, but I think it was just prior to 3.10
In the Clip Sim's I can no longer access the Lock Screen. "H" used to do this for me, as I recall.
Also, the charge values in the Clip Sim's no longer incrementally increase and decrease. The charge values used to go from 0 to 100 and then back down again.
This applies to the Clip Zip Sim as well. I haven't tried the Fuze Sim.
Thanks.
|
|
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:
|
|
12622 | Bugs | Music playback | Very Low | RB dumps when I skip backwards 3 songs. | 2012-03-22 | Fernando Sclavo | 2012-03-22 | |
Task Description
When I skip backwards 3 songs, Rockbox aborts with the following dump:
Data abort at 60077EB8 FSR 0x1 (domain 0, fault 1) address 0x00000005
It happens always, playing or in pause. At the 3rd song dumps.
RB version: 04cd1fd-120320
Regards!
|
|
12618 | Bugs | User Interface | Very Low | %pL (and %pR) tags showing weird results on Sansa Fuze ... | 2012-03-16 | Ralf Karschnick | 2012-03-16 | |
Task Description
Using the %pL Tag (in WPS) in order to simply display it or use it in a conditional tag (like in the “analog” theme yields very high values (let call it spikes) - where they should not be, while the bar-type peak meter is working fine.
Within the simulator, everithing is running smooth, as far as I could see.
I tried to have a look at the sources but that’s too much at the moment.
Does somebody have a clue ?
Regards
Ralf
|
|
12614 | Bugs | Database | Very Low | Bug while seeking on Sansaclip+ | 2012-03-13 | Alan | 2012-05-09 | |
Task Description
Hi, firstly i put Sansa c200 because SansaClip+ is not available in the list. My player is a Sandisk SansaClip+ bought 6 months ago with an 8Gb class 4 Sandisk microsd (that is currently empty, no songs stored).
Steps to reproduce the issue (after a fresh installation of the Firmware, no settings changed):
1) Switch on 2) → database 3) → track 4) select any track 5) press the central button 6) Erase Dynamic Playlist? is displayed.. Select Yes 7) countdown then starts to play 8) Seek to the next song (it happens at the first seek or might need three, four one after the other)
Data abort at 30813E44 FSR 0x8 (domani 0, fault 8) address 0x62E90028
- I installed version 3.10 on top of version 3.09, but later on I tried to uninstall completely 3.10 and reinstall it from scratch and the issue is the same.
- After the crash i have to keep the "switchoff" button pressed for a while.. then I press it again to restart the player and I try to resume the song I get "playlist control file is invalid" or "nothing to resume"
- behavior is the same with or without the SD card
- The issue was randomly happening (but very very rarely) also on the previous version of the firmware (3.09) I got the error a couple of times in 6 months.
|
|
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.
|
|
12603 | Bugs | Manual | Very Low | "root menu order" item missing from "Config file option... | 2012-02-28 | Thomas Martitz | 2012-02-28 | |
Task Description
All settings should be listed there (even more so settings which cannot be set through the UI), but root menu order is only described in advanced_topic/main.tex as of now.
|
|
12596 | Patches | User Interface | Very Low | Clip/Clip+/Zip keymap change - power button returns to ... | 2012-02-22 | Martin Sägmüller | 2012-02-22 | 1 |
Task Description
I know keymap changes can be a difficult topic, this one however is just a small change - which, I hope, improves usability of Clip players quite a bit.
I just swapped the behavior of two functions when browsing lists: short press on the power button returns to WPS, and pressing menu + center stops playback while in lists. Return to WPS is arguably the much more often used functionality of the two, and this change makes it easier to do that.
|
|
12593 | Bugs | User Interface | Very Low | Display sometimes stays white after turning on | 2012-02-20 | Michael Monreal | 2012-02-20 | |
Task Description
When turning on my Sansa with Rockbox 3.10, the display sometimes goes all white and stays that way until the screensaver kicks in. The player works fine during that time and can be controlled blindly. After the screen turns off and I turn it on again, the screen works as expected. This does not happen all the time, but very often.
|
|
12591 | Bugs | Music playback | Very Low | Playback of FLAC skips tracks randomly on Clip+ | 2012-02-19 | Thomas M. | 2012-02-19 | |
Task Description
I'm using Rockbox 3.10 with the 01.02.16 Clip+ Firmware on a Sansa Clip+ 8GB, installed via the installer.
There are a lot of 44kHz/16bit FLAC files stored on the device. During playback it could happen that the next track starts while the current one isn't even close to finished. This can be in the first few seconds or in the middle of the song.
This usually doesn't happen to the same song twice. It's generally a different song each time. When skipping back to the track that was skipped, it usually plays without any problems.
The memory has been checked with CHKDSK and no errors were found. The FLACs play fine in foobar2000 and I'm certain that they are okay.
I do believe the error occurs most often after roughly quarter to half an hour of playback.
This may be related to FS#12208
|
|
12590 | Bugs | Battery/Charging | Very Low | Dircache breaks when flashing rombox or rockbox on h1x0 | 2012-02-16 | Frank Gevaerts | 2012-03-13 | |
Task Description
When booting rombox or rockbox from flash on h1x0 with dircache enabled, chances are good that the thing will freeze. This started with r30393 / 7e14b935dfdcd808cfb0703d19a43efd11eeef16.
This still happens with d2f97da668836f5d825c9aaef0d58dea64fc4dd5
|
|
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
|
|
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).
|
|
12575 | Bugs | Music playback | Very Low | DAP hangs in last track of FLAC album with HD activity ... | 2012-02-02 | Joaquim Dias | 2012-05-21 | |
Task Description
H140; R-box v3.10 and current. codec; libFlac v1.1.0. 20030126 Embedded cue sheet; No.
When playing my only FLAC album (6 tracks), I can reproduce the following condition at will, The player hangs in the last track, player does not respond to buttons and only a hard reset will fix it.
I can consistently reproduce the above bug as follows,
I start track 1 and let it play for a few sec's, then FF to 5 sec's before the end of track 1, let it play the remaining 5 sec's of track 1 and let it change into track 2, Play a few sec's of track 2, then FF to 5 sec's before the end of track 2, let it change into track 3, Play a few sec's of track 3, then FF to 5 seconds before the end of track 3, let it play etc… ( I repeat the above until I'm in the last track), when it has changed into the last track, FF to 5 sec's before the end of the last track and let it play, when play time reaches 1~0 sec's before the end of the last track, the player hangs in that last track with the disk activity light on continuously, player does not respond to buttons and only a hard reset will fix it.
|
|
12574 | Bugs | Configuration | Very Low | 3.10 on Clip V2 freezes when selecting another language... | 2012-02-02 | Frank Steinmetzger | 2012-02-02 | 1 |
Task Description
After a lot of trial and error I found out the following.
It appears that 3.10 on my Clip V2 writes a bad nvram.bin file. When I try to set another interface language, my Clip freezes. It does not react to input and the clock in the top line doesn’t update anymore. The FM radio kept on playing though. I haven’t tried all available settings in the menu, just the ones I occasionally use. But the problem never occurred anywhere else, just upon selecting another language.
When I delete nvram.bin, I can set a language. Then I switch the Clip off and on again, and the problem comes back.
See attached the nvram.bin which causes a freeze.
PS.: No Sansa Clip in the Player Type selection on the left.
|
|
12568 | Patches | Configuration | Very Low | iPod Classic - limit volume to +6db | 2012-01-29 | Albert Barca | 2012-02-13 | 4 |
Task Description
The iPod Classic Cirrus CS42L55 DAC+amp chip is specified to output audio up to +12dB versus the reference level (0.775V RMS) and the current Rockbox driver implements this accordingly (note that the OF limits the amplification to a lower level).
However, any amplification above +3dB applied to a 0dB signal results in serious clipping errors, the sound being distorted (oscilloscope measurements attached). This is not a surprise, given that +12dB translates in over 8V peak-to-peak output, way above what the iPod is capable of with its 3.7V battery.
Distortions aside, +12dB can be overkill for most of the earphones (depending on the sensitivity) and not a very pleasant experience. If you put the iPod in your pocket and forget to lock it you may experience this frequently.
In practice not all tracks have peaks reaching the 0dB level (actually nowadays this is quite common given the "loudness war"). To provide some room for additional amplification when needed, I found the +6dB limit to be a good compromise.
|
|
12563 | Bugs | Codecs | Very Low | .ogg file won't play | 2012-01-24 | dave storey | 2012-01-28 | |
Task Description
as3525 Version: 91b52a1-120122
Running on Sansa clip zip, unable to play the following .ogg file (I can't try it on other Rockbox versions, maybe someone can?). Works fine played any other way.
www.quik.clara.co.uk/Wontplay_inrockbox.ogg
(too large to attach directly)
|
|
12560 | Bugs | User Interface | Very Low | Quickscreen items flicker and vanish | 2012-01-23 | Michael Huth | 2012-12-10 | |
Task Description
There are some problems with the quickscreen on the Sansa Fuze. I traced it back to r31246, a text alignment bugfix:
- Quickscreen items flicker a lot and sometimes vanish for half a second on each change of an option.
- Setting the right option (Repeat) to "Shuffle" and then back to something else causes "Shuffle" to stick on screen. Leaving the quickscreen and returning to it reveals the correct setting.
This only happens for longer scrolling strings of text, e.g. "Shuffle" is "Zufallswiedergabe" in German.
|
|
12558 | Bugs | Settings | Very Low | Some core_alloc users do not handle failures | 2012-01-22 | Lorenz | 2012-01-30 | 1 |
Task Description
If loading a config file that holds all configuration settings (Settings → Manage Settings - Save .cfg File) from Rockbox 3.9.1 in Rockbox 3.10 or the daily builds for Archos Recorder with Firmware V3, the player will not bootup correctly on the next restart and show:
I 4: IllInstr
directly at booting. I then press "On" again and get:
*PANIC* Stkov main
and the HD shuts down. If I press "On" again, the same loop continues.
The problem can only be resolved by plugging the player to USB, removing the rockbox directory and copying it again from the newest daily build or 3.10, then restart. It boots up fine again then. Doing the previous settings manually on 3.10 or the daily builds and then saving / loading them works fine and the player won´t have the boot-bug anymore.
I have attached the config file that creates the problem.
|
|
12556 | Bugs | User Interface | Very Low | hardware buttons doesn't work after using Hold on iPod | 2012-01-21 | Alexander | 2012-02-19 | |
Task Description
Hello! Not very long ago I got iPod Nano 2 gen 8gb, installed rockbox and encountered this strange behavior:
After pushing and releasing Hold button player doesn't react on wheel. When I'm trying to use some other button(Menu, for example), nothing happens. After third attempt to use a button Rockbox does button context properly, showing me what I wanted to see a few clicks ago. What happens with interface after using Hold? When I return to 'Now playing' screen throughout Menu, all works fine. But right after using Hold button I can't nor increase/decrease volume, neither move in a menu list.
|
|
12550 | Bugs | Codecs | Very Low | Crash when playing ogg files (gapless, from live album,... | 2012-01-19 | Vlado Plaga | 2012-01-28 | |
Task Description
When playing a sequence of two songs Rockbox on my HTC Desire S always crashes. I first had r30576-110921, and now it is r31516-120102. Cropped versions of the songs can be downloaded here:
http://www.vlado-do.de/rockbox/01_Wenn_die_Nacht_am_tiefsten_03m_08s_09h__03m_23s_22h.ogg http://www.vlado-do.de/rockbox/02_Wir_m%C3%BCssen_hier_raus_00m_00s__00m_28s_82h.ogg
They still reproducably crash my Rockbox. I found a workaround, though: mp3 versions of the same songs play all right. Rockbox for me still is the only known way to have gapless playback on my phone. Thanks for that guys!
Buy the way: the same ogg files made no problem in Rockbox on my old iPod nano.
|
|
12549 | Bugs | Manual | Very Low | Addittion info in manual about using talkclip for short... | 2012-01-19 | Marek Salaba | 2012-01-19 | |
Task Description
Hello.
Can you somebody add some info about using talkclip for shortcuts.txt in manual section 5.14 Shortcuts.
I'd recommend replace this
"talkclip: <filename clip of a talk that speak When voice menus are enabled>"
for this
"talkclip: <filename clip with full path of a talk that speak When voice menus are enabled
(example /.rockbox/filename.talk)>"
I suggest this because I took a long time before I figured out how it should be properly.
|