This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#11767 - Meier crossfeed
Attached to Project:
Rockbox
Opened by Bertrik Sikken (bertrik) - Sunday, 21 November 2010, 12:33 GMT+2
Last edited by Michael Sevakis (MikeS) - Tuesday, 01 May 2012, 10:27 GMT+2
Opened by Bertrik Sikken (bertrik) - Sunday, 21 November 2010, 12:33 GMT+2
Last edited by Michael Sevakis (MikeS) - Tuesday, 01 May 2012, 10:27 GMT+2
|
DetailsAttached patch adds a new crossfeed algorithm to rockbox, emulating the basic "Meier" crossfeed (2 capacitors, 3 resistors) as discussed in http://www.meier-audio.homepage.t-online.de/passivefilter.htm
This crossfeed blends a bit of low-pass filtered L signal into the R signal (and vice versa) while adding about 300 us delay to the crossfed-signal. A difference with the crossfeed already present in rockbox, is that this algorithm keeps the total spectrum flat (the one currently in rockbox accentuates low-frequency signals, making it sound a bit muffled). This implementation is quite lightweight, just 3 multiplies per left-right pair of samples, but only has a C implementation right now (no asm). The crossfeed effect is quite subtle and is noticeable mostly one albums that have very strong left-right separation (e.g. one instrument only on the left, another only on the right). In the user interface, the new crossfeed option appears as "Meier" and is not configureable. The existing crossfeed is renamed to "Custom" as it allows itself to be customised. There is no entry for the user manual yet. |
This task depends upon
Closed by Michael Sevakis (MikeS)
Tuesday, 01 May 2012, 10:27 GMT+2
Reason for closing: Out of Date
Additional comments about closing: Synced to 0dd00b33 and moved to gerrit.
http://gerrit.rockbox.org/r/#/c/227/
Tuesday, 01 May 2012, 10:27 GMT+2
Reason for closing: Out of Date
Additional comments about closing: Synced to 0dd00b33 and moved to gerrit.
http://gerrit.rockbox.org/r/#/c/227/
In my view, the current Meier-crossfeed feature (v3 patch) is superior to Rockbox's standard crossfeed feature (better sound quality, no configuration needed) and could actually replace it. I find it hard to imagine anyone actually fiddling with the plethora of crossfeed settings we have today.
FS#11577.The only difference between v2 and v3 are two digits. In dsp.c replace both (0x7fffffff/NATIVE_FREQUENCY) with (0xffffffff/NATIVE_FREQUENCY).