Contribute
Register

Use SSE2 default

Status
Not open for further replies.
Joined
Feb 5, 2011
Messages
5
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. 0
Hello,

Currently I'm using the VoodooHDA kext from Multibeast 3.7.2 (tried 3.7.3 which reduce my sound output to whisper levels). Anyways, everytime I turn my computer on I have to manually go in the settings and turn on the Use SSE2 option because if I dont the sound comes out crackling.

So my question is if anyone knows how I can make this setting permanent?
 
I have the same issue. I have to enable "Use SSE2" every time the machine startup and this option won't save. Any hint?
 
go to terminal and:

Code:
sudo nano /System/Library/Extensions/VoodooHDA.kext/Contents/Info.plist

set Vectorize to true, and Noise to 4

Code:
<key>Noise</key>
<integer>4</integer>
<key>Vectorize</key>
<true/>

You can set some default mixer settings for quiet and nice driver startup, eg:

Code:
<dict>
  <key>Main</key>
  <string>0</string>
  <key>iGain</key>
  <string>80</string>
  <key>iMix</key>
  <string>0</string>
  <key>Monitor</key>
  <string>0</string>
  <key>Mic</key>
  <string>0</string>
</dict>

After edit you need to rebuild caches (run Multibeast and go to System Utilities)

In control panel sse2 is not visible, but is on. Sound quality is better - no crackling etc.
 
Status
Not open for further replies.
Back
Top