back to notes

some fixes I had to do after a November 2022 update in Manjaro

I guess the main issue was a mix auf 48k and 44k audio streams, so I set the default to 48k. According to `pactl` all streams are 48k now.

```diff
/etc/pulse/daemon.conf
- default-sample-rate = 44100
+ default-sample-rate = 48000
```

See also https://wiki.archlinux.org/title/PulseAudio/Troubleshooting#Glitches,_skips_or_crackling

This was recommended as well:

```diff
/etc/pulse/daemon.conf
- ; avoid-resampling = true
+ avoid-resampling = true
```

And this:

/etc/pulse/default.pa

```diff
- load-module module-udev-detect
+ load-module module-udev-detect tsched=0
```


last updated november 2022