user523234
user523234

Reputation: 14834

AUVoiceProcessing unit kAUVoiceIOProperty_VoiceProcessingQuality deprecated

According to AudioUnitProperties.h, the kAUVoiceIOProperty_VoiceProcessingQuality is deprecated. What is the replacement?

 @constant      kAUVoiceIOProperty_VoiceProcessingQuality
 @discussion        Scope: Global
                    Value Type: UInt32
                    Access: read/write
                DEPRECATED. Sets the quality of the voice processing unit. Quality values
                are comprised between 0 (lowest) and 127 (highest).

Upvotes: 1

Views: 642

Answers (1)

Aliaksandr Andrashuk
Aliaksandr Andrashuk

Reputation: 965

Try following:

@constant       kAudioUnitProperty_RenderQuality
                    Scope:          Global
                    Value Type:     UInt32
                    Access:         Read / Write

                    A value (0 - 127) that can be used to control the quality (complexity) of the rendering operation. A typical usage is to set render quality to maximum for best quality, but
                    if CPU usage is a concern a lesser quality can be set to trade off render quality.

Upvotes: 1

Related Questions