your phones rooted correct?
Heres what I did to get the fix enabled on my rooted droid (any 2.2/Froyo release, not sure if this bug persists in the OTA release)
This information was originally from the XDA link above. Here it is done slightly different on a droid:
This temporarily applies the fix, after doing this you may restart any open media apps and see the difference.
1. use your favorite terminal emulator... I use connectbot local session...
<code>
su
setprop media.stagefright.enable-player false
</code>
2. restart media apps and boom boom boom in your car again
the permanent method:
1. open said terminal emulator, remount /system read write this is available as a script on most roms by doing:
<code>
su
sysrw
</code>
2. Go into the /system directory and edit build.prop
<code>
su (if your not already previously admin from su'ing earlier)
cd /system
</code>
Next use your favorite text editor to edit build.prop
<code>
nano build.prop
</code>
or
<code>
vi build.prop
</code>
Note if you must use VI be aware of the commands before you attempt to edit the file, as it is an acquired taste to use. I think you can also edit this via astro and edit it, this may be the easiest way for non console junkies
edit the line with
media.stagefright.enable-player=true to say
media.stagefright.enable-player=false
<code>
media.stagefright.enable-player=false
</code>
save the file and reboot your phone. The fix is now permanently applied
DO NOT MESS AROUND WITH OTHER OPTIONS IN THIS FILE UNLESS YOU KNOW WHAT YOU ARE DOING AS YOU COULD MESS UP YOUR CURRENT ROM AND HAVE TO REFLASH! I AM NOT RESPONSIBLE FOR WHAT YOU DO WITH THIS INFORMATION!
Note: This will break m.youtube.com video streaming, however the youtube app will still play videos.
Sorry if this tutorial is not great, as its my first tutorial on this type of thing :|