ChanServ changed the topic of #asahi-dev to: Asahi Linux: porting Linux to Apple Silicon macs | Non-development talk: #asahi | General development | GitHub: https://alx.sh/g | Wiki: https://alx.sh/w | Logs: https://alx.sh/l/asahi-dev
pb17 has quit [Ping timeout: 480 seconds]
pb17 has joined #asahi-dev
SalimTer- has joined #asahi-dev
SalimTerryLi has quit [Read error: Connection reset by peer]
KxCORP5894 has quit [Quit: Bye!]
KxCORP5894 has joined #asahi-dev
nela has joined #asahi-dev
nela has quit [Quit: bye!]
nela has joined #asahi-dev
tobhe has joined #asahi-dev
tobhe_ has quit [Ping timeout: 480 seconds]
chadmed_ has quit [Remote host closed the connection]
jeisom has quit [Ping timeout: 480 seconds]
pb17 has quit [Ping timeout: 480 seconds]
pb17 has joined #asahi-dev
chadmed_ has joined #asahi-dev
tristan2_ has joined #asahi-dev
tristan2 has quit [Ping timeout: 480 seconds]
cylm has joined #asahi-dev
andymandias_ has quit [Quit: ZNC 1.9.0 - https://znc.in]
andymandias has joined #asahi-dev
andymandias_ has joined #asahi-dev
andymandias has quit [Remote host closed the connection]
andymandias has joined #asahi-dev
ryan2 has joined #asahi-dev
pb17 has quit [Ping timeout: 480 seconds]
pb17 has joined #asahi-dev
ryan2 has quit [Remote host closed the connection]
andymandias_ has quit [Quit: ZNC 1.9.0 - https://znc.in]
jeffmiw has joined #asahi-dev
andymandias has quit [Remote host closed the connection]
andymandias has joined #asahi-dev
jeffmiw has quit [Ping timeout: 480 seconds]
chadmed_ has quit [Remote host closed the connection]
pb17 has quit [Ping timeout: 480 seconds]
jeffmiw has joined #asahi-dev
ddxtanx has quit [Remote host closed the connection]
ddxtanx has joined #asahi-dev
ddxtanx has quit [Remote host closed the connection]
<jannau>
with that reverted usb-c works but not with device connected at boot
<jannau>
That results in "phy-apple-atc 503000000.phy: pipehandler lock not acked, this type-c port is probably dead until the next reboot." but device works after replugging
SalimTer- has quit [Read error: Connection reset by peer]
alice has joined #asahi-dev
darkapex1 has quit [Remote host closed the connection]
darkapex1 has joined #asahi-dev
<chadmed_>
are we happy to just merge those speaker commits now? the lsp-plugins patch has been in releases for months now, and we have NFP as well as proven-good last-ditch limiters on the back end of the dsp graph anyway
<tpw_rules>
nfp?
<chadmed_>
non-finite protection
<chadmed_>
so if clients try to send NaN, infinites, etc we just ignore them instead of passing them through the dsp chain
<tpw_rules>
oh interesting
<tpw_rules>
do they get replaced with zeros?
<chadmed_>
yeah, which represents silence. we dont want the dsp graph to do anything with a bad sample at all
<tpw_rules>
i guess there's a time component is my point
<chadmed_>
thankfully its very rare but if some stupid moron is for example trying to write a psychoacoustic bass enhancer and screws up the signal processing path... it can cause some unpleasantness :p
<chadmed_>
(it's me btw im the stupid moron)
<tpw_rules>
been there
<chadmed_>
anyway with lv2 we can ignore time. we just get a buffer of samples, iterate over them and do something to it, then fill up an output buffer
<chadmed_>
so all we do for NFP is check if any of the samples are not finite (rust has a nice method on its float types for this) and then set them to 0 in the output buffer