http://bugs.winehq.org/show_bug.cgi?id=14717
--- Comment #123 from Krzysztof Nikiel zzdz2@yahoo.pl 2011-01-03 02:57:19 CST --- (In reply to comment #117)
Also I would like to see a separate patch that adds the quality slider to winecfg.
Yeah, me too.
I have just written a simple script to set quality:
#!/bin/sh
QUAL="$1"
if test -z "$QUAL"; then QUAL="2"; fi
REGEDIT="wine regedit" REGKEY='REGEDIT4
[HKEY_CURRENT_USER\software\wine\directsound] "ResampleQuality"="%d" '
echo setting resample quality $QUAL printf "$REGKEY" $QUAL | $REGEDIT -