当我在通话期间拔下耳机时,AVAudioEngine崩溃了 [英] AVAudioEngine crashes when I unplug headphones during a call

查看:296
本文介绍了当我在通话期间拔下耳机时,AVAudioEngine崩溃了的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下是我在日志中看到的内容:

Here is what I see in the log:

16:33:20.236: Call is Dialing
16:33:21.088: AVAudioSessionInterruptionNotification
16:33:21.450: AVAudioSessionRouteChangeNotification
16:33:21.450: ....change reason CategoryChange
16:33:21.539: AVAudioEngineConfigurationChangeNotification
16:33:21.542: Starting Audio Engine
16:33:23.863: AVAudioSessionRouteChangeNotification
16:33:23.863: ....change reason OldDeviceUnavailable
16:33:23.860 ERROR:     [0x100a70000] AVAudioIONodeImpl.mm:317: ___ZN13AVAudioIOUnit11GetHWFormatEjPj_block_invoke: required condition is false: hwFormat
*** Terminating app due to uncaught exception 'com.apple.coreaudio.avfaudio', reason: 'required condition is false: hwFormat'

我订阅了 AVAudioEngineConfigurationChangeNotification AVAudioSessionInterruptionNotification

@objc private func handleAudioEngineConfigurationChangeNotification(notification: NSNotification) {
    println2(notification.name)
    makeEngineConnections()
    startEngine()
}

@objc private func handleAudioSessionInterruptionNotification(notification: NSNotification) {
    println2(notification.name)
    if let interruptionType = AVAudioSessionInterruptionType(rawValue: notification.userInfo?[AVAudioSessionInterruptionTypeKey] as! UInt) {
        switch interruptionType {
        case .Began:
            audioPlayerNode.stop()
        case .Ended:
            if let interruptionOptionValue = notification.userInfo?[AVAudioSessionInterruptionOptionKey] as? UInt {
                let interruptionOption = AVAudioSessionInterruptionOptions(interruptionOptionValue)
                if interruptionOption == AVAudioSessionInterruptionOptions.OptionShouldResume {
                    AVAudioSession.sharedInstance().setActive(true, error: nil)
                    startEngine()
                }
            }
        }
    }
}

func startEngine() {
    println2("Starting Audio Engine")
    var error: NSError?

    if !audioEngine.running {
        audioEngine.startAndReturnError(&error)
        if let error = error {
            println2("Error initializing Audio Engine: " + error.localizedDescription)
        }
    }
}

private func makeEngineConnections() {
    let mainMixer = audioEngine.mainMixerNode
    audioEngine.connect(audioPlayerNode, to: audioEqNode, format: mainMixer.outputFormatForBus(0))
    audioEngine.connect(audioEqNode, to: audioTimePitch, format: mainMixer.outputFormatForBus(0))
    audioEngine.connect(audioTimePitch, to: mainMixer, format: mainMixer.outputFormatForBus(0))
}

但它没有'似乎工作。

but it doesn't seem working.

如何避免这次崩溃?

推荐答案

我怀疑这个问题在这里:

audioEngine.connect(audioTimePitch,to:mainMixer,format:mainMixer.outputFormatForBus(0))

I suspect the problem is here:
audioEngine.connect(audioTimePitch, to: mainMixer, format: mainMixer.outputFormatForBus(0))

文档说:


此方法调用connect:to: fromBus:toBus:format:使用总线0作为源音频节点,使用总线0作为目标音频节点,但目的地是混音器的情况除外,在这种情况下,目的地是混音器的nextAvailableInputBus。

This method calls connect:to:fromBus:toBus:format: using bus 0 for the source audio node, and bus 0 for the destination audio node, except in the case of a destination which is a mixer, in which case the destination is the mixer’s nextAvailableInputBus.

这篇关于当我在通话期间拔下耳机时,AVAudioEngine崩溃了的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆