For those with music-streaming sounding bad I can confirm that this works to cleanup the sound. Credit goes to:
(
http://forum.xda-developers.com/showthread.php?t=737111)
Here's what I did. For those following these steps, the file locations on your computer may be slightly different.
On Windows:
1. Open Command Prompt
2. Type cd [location of tools folder in android sdk] Example
cd C:\android-sdk-windows\tools
3. Type
adb pull /system/build.prop c:\build.prop [This will place build.prop in your C Drive]
4. Using any text editor, open the file, make the necessary change (change
media.stagefright.enable-player to
false), then save.
5. Type
adb remount
6. Type
adb push c:\build.prop /system/build.prop
7. Type
adb reboot
8. After reboot to verify that it is disabled, type
adb shell getprop
After a few scrolls, you will see the following:
[media.stagefright.enable-player]: [false]
This means that everything was done correctly.
Jim