1

AudioUnitProperties.h によると、kAUVoiceIOProperty_VoiceProcessingQuality は非推奨です。代替品は何ですか?

 @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).
4

1 に答える 1

1

以下を試してください:

@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.
于 2013-11-04T13:35:39.233 に答える