Adobe have just released the beta version of Flash Player 10.3 which you can download from the Adobe Labs website.
The major feature in this version - especially if you are building real-time collaborative applications - is the advanced echo cancellation (AEC). Developers can now take advantage of acoustic echo cancellation, noise suppression, voice activity detection, and automatic compensation for various microphone input levels. End users will be able to experience higher quality audio to aid conversation flow, without using a headset.
Most of these features can be accessed via the new flash.media.MicrophoneEnhancedMode and flash.media.MicrophoneEnhancedOptions classes which contain properties to control the way that the Microphone instance enhances audio, suppresses echos and so on. The API docs (.zip) are here.
This beta version is currently available for desktop operating systems, with support for mobile and AIR following soon.
Another great enhancement for end users is the native control panel which allows you to manage Flash Player privacy, security and storage settings on Windows, Mac, and Linux directly from the Control Panels or System Preferences on your computer. I love this feature as the Settings Manager used by previous versions of Flash Player was a usability nightmare. I also think that Flash Player looks muchmore grown up now that it's sporting its own settings panel in the System preferences. A great improvement.
Check out the full release notes and other new features here.

#1 by Rozen on 3/10/11 - 10:09 PM
I'd like to use: "MicrophoneEnhancedOptions" class in this new package. I've downloaded "Burrito" with "hero" SDK. But I can't seem to find this file.
Any idea what SDK will include this class so that I can use it?
Thanks.
#2 by Stefan Richter on 3/10/11 - 10:33 PM
You can create your own profile to publish to a specific SWF version in Adobe Flash CS5. See this (link below) package, it contains a sample FlashPlayer10_3.xml file file you need to copy into the right place.
1. FlashPlayer10_3.xml goes into: Adobe Flash CS5\Common\Configuration\Players
2. Place the playerglobal.swc related to the 10.3 build you are working with into: Adobe Flash CS5\Common\Configuration\ActionScript 3.0\FP10.3
3. Restart Flash Professional after that and then select ’Flash Player 10.3’ in the publish settings. It will publish to a SWF12 file.
http://dl.dropbox.com/u/7009356/Flash%20Pro%2010.3...
You can check if it publishes as swf 12 in ActionScript
// first frame
loaderInfo.addEventListener(Event.INIT, init); function init(event:Event):void {
trace("SWF " + loaderInfo.swfVersion);
}
Thanks goes to Calise Cheung for this tip.
#3 by Stefan Richter on 3/10/11 - 10:34 PM
Also check the Flash Player 10.3 release notes.