IOS:关于AudioQueue的问题

IOS:关于AudioQueue的问题,ios,swift,audioqueue,Ios,Swift,Audioqueue,谁能告诉我“kaudioqueproperty\u TimePitchAlgorithm”的详细含义 当我使用audioqueue进行快进或快退时,我发现当我没有设置属性kaudioqueproperty\u TimePitchAlgorithm时,0.9到1.25之间的速度无效 propValue = 1; AudioQueueSetProperty(audioQueueRef,kAudioQueueProperty_TimePitchBypass, &propValue, sizeo

谁能告诉我“
kaudioqueproperty\u TimePitchAlgorithm
”的详细含义

当我使用
audioqueue
进行快进或快退时,我发现当我没有设置属性
kaudioqueproperty\u TimePitchAlgorithm
时,0.9到1.25之间的速度无效

propValue = 1;
AudioQueueSetProperty(audioQueueRef,kAudioQueueProperty_TimePitchBypass, &propValue, sizeof(propValue));
propValue = kAudioQueueTimePitchAlgorithm_Spectral;
AudioQueueSetProperty(audioQueueRef, kAudioQueueProperty_TimePitchAlgorithm, &propValue, sizeof(propValue));
当我设置属性
kaudioqueproperty\u TimePitchAlgorithm
时,0.9到1.25之间的速度生效