Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2017-09-03 19:42:25 +0300
committerGitHub <noreply@github.com>2017-09-03 19:42:25 +0300
commit081e9e7151a8ea33cafe4f480dfdd0a1c2eff02a (patch)
treeb6c547139bfcca2fabea27be4855577c2e065660
parentd8416cc5ab53427b60bb93869163747b76bfa860 (diff)
parent14b3143c5eb7018926a93f5e6bcaabd7310d30d3 (diff)
Merge PR #58: Do not set kAUVoiceIOProperty_VoiceProcessingQuality on audio unit
-rw-r--r--src/MKVoiceProcessingDevice.m23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/MKVoiceProcessingDevice.m b/src/MKVoiceProcessingDevice.m
index 9105dab..02d0b3e 100644
--- a/src/MKVoiceProcessingDevice.m
+++ b/src/MKVoiceProcessingDevice.m
@@ -238,29 +238,6 @@ static OSStatus outputCallback(void *udata, AudioUnitRenderActionFlags *flags, c
NSLog(@"MKVoiceProcessingDevice: Unable to disable VPIO AGC.");
return NO;
}
-
- // When running Mumble built with the iOS 6.1 SDK, built using Xcode 4.6.3 on iOS 7,
- // we sometimes get zero samples from the VPIO Audio Unit. When building with Xcode 5
- // against the iOS 7 SDK, everything is OK, though.
- //
- // This is somehow related to setting VoiceProcessingQuality in the 'low' range. If we don't set
- // it at all (and thus presumably stay in the 'high quality' range) iOS 7 doesn't complain. So do
- // that as a workaround for now.
-#if __IPHONE_OS_VERSION_MAX_ALLOWED <= 60100
- if (!DeviceIsRunningiOS7OrGreater()) {
-#else
- {
-#endif
- // It's sufficient to set the quality to 0 for our use case; we do our own preprocessing
- // after this, and the job of the VPIO is only to do echo cancellation.
- val = 0;
- len = sizeof(UInt32);
- err = AudioUnitSetProperty(_audioUnit, kAUVoiceIOProperty_VoiceProcessingQuality, kAudioUnitScope_Global, 0, &val, len);
- if (err != noErr) {
- NSLog(@"MKVoiceProcessingDevice: unable to set VPIO quality.");
- return NO;
- }
- }
val = 0;
len = sizeof(UInt32);