AUGraph 在 iOS 中的电话中断后停止运行

Posted

技术标签:

【中文标题】AUGraph 在 iOS 中的电话中断后停止运行【英文标题】:AUGraph stops running after phone call interrupt in iOS 【发布时间】:2013-04-05 23:09:53 【问题描述】:

我正在使用 AUGraph 和 AUSampler 将 MIDI 信号转换为音频。该应用程序运行正常,但如果应用程序被中断,即被电话或计时器中断,则会出现问题。中断后 AUGraph 停止运行并且没有任何声音。再次获得声音的唯一方法是重新启动应用程序。我正在使用标准方法来处理中断:

[[NSNotificationCenter defaultCenter] addObserver: self
                                         selector: @selector(handleInterruption:)
                                             name: AVAudiosessionInterruptionNotification
                                           object: [AVAudioSession sharedInstance]];

当有中断时,handleInterruption 方法被调用:

// If the system interrupts the audio session - kill the volume
-(void) handleInterruption: (NSNotification *) notification 
    NSDictionary *interuptionDict = notification.userInfo;
    NSInteger interuptionType = [[interuptionDict valueForKey:AVAudioSessionInterruptionTypeKey] intValue];

    if (interuptionType == AVAudioSessionInterruptionTypeBegan) 
        [self setAudioSessionActive: NO];
        [self stopAUGraph];
    
    else if (interuptionType == AVAudioSessionInterruptionTypeEnded) 
        [self setAudioSessionActive: YES];
        [self startAUGraph];
    

以下是启动和停止 AUGraph 的方法

-(void) startAUGraph 
    CheckError(AUGraphStart(_audioGraph), "Failed to start Audio Graph");


-(void) stopAUGraph 
    Boolean isRunning = false;

    // Check to see if the graph is running.
    CheckError(AUGraphIsRunning(_audioGraph, &isRunning), "Error trying querying whether graph is running");
    // If the graph is running, stop it.
    if (isRunning) 
        CheckError(AUGraphStop(_audioGraph), "Failed to stop Audio Graph");
    

这里是 setAudioSessionActive 方法:

-(void) setAudioSessionActive: (BOOL) active 
    NSError *audioSessionError = nil;
    BOOL success = [_audioSession setActive:active error:&audioSessionError];
    if (!success) 
        NSLog (@"Error activating audio session!");
    

我在渲染回调中设置了一个断点,因此我可以确认 AUGraph 没有运行。有没有人遇到过这个问题?我还需要做些什么才能让 AUGraph 再次运行吗?提前致谢!

【问题讨论】:

如果你在handleInterruption中放了一个断点:它会被命中吗?值得注意的是,中断通知系统是 iOS6 的新系统,因此可能无法在 iOS5 设备上运行。另一个测试中断的快速方法是激活 Siri(按住主页按钮)。 【参考方案1】:

这个错误我也遇到了可怕的麻烦。我想我找到了解决方法:

由于呼叫中断后返回时 NSNotifications 不会触发,因此在我的 AppDelegate 的 -applicationWillEnterForeground:method 中我检查是否存在导致其进入后台的中断(我在 @987654322 时设置了一个标志@ 以 AVAudioSessionInterruptionTypeBegan 作为中断类型键发布),如果是这样,我在控制 AUGraph 的对象中调用一个方法,该方法运行以下内容:

    Boolean isRun = FALSE;
    AUGraphIsRunning(myAUGraph, &isRun);
    if (isRun) 
        NSLog(@"END INTERRUPTION BUT AUGRAPH IS RUNNING");
        AUGraphStop(myAUGraph);// Kick start the AUGraph!
        AUGraphStart(myAUGraph); //Restart immediately
        Boolean isInit = FALSE;
        AUGraphIsInitialized(processingGraph, &isInit);
        if (!isInit) 
            NSLog(@"augraph not initd'");
            OSStatus result = AUGraphInitialize(processingGraph);
            if (result != noErr) 
                NSLog(@">>can't init graph");
            
        
    
    else
    
        NSLog(@"END INTERRUPTION BUT AUGRAPH IS NOT RUNNING");
    

关键似乎是停止然后立即重新启动 AUGraph。到目前为止,当有来电或另一个应用程序接管扬声器/麦克风时,它可以正常运行,我可以从我在应用程序中中断的地方接听。

AUGraph 的重新初始化似乎从来没有被执行过,isRun 除了TRUE 之外什么都没有执行,但无论如何我还是把它留了下来。希望对您的情况有所帮助,我花了几天的时间来破解这个问题,我希望它继续有效,而不仅仅是巧合! 4 小时,到此为止!

【讨论】:

【参考方案2】:

在 iOS 7 中,它适用于我。

//Interruption handler
-(void) interruption: (NSNotification*) aNotification


    NSDictionary *interuptionDict = aNotification.userInfo;

    NSNumber* interuptionType = (NSNumber*)[interuptionDict valueForKey:AVAudioSessionInterruptionTypeKey];

    if([interuptionType intValue] == AVAudioSessionInterruptionTypeBegan)

        [self stopAUGraph];

    else if ([interuptionType intValue] == AVAudioSessionInterruptionTypeEnded)

        [self startAUGraph];


【讨论】:

【参考方案3】:

我不确定您能否使用当前的 iOS6 版本实现这一目标。 请参阅此错误报告 - http://openradar.appspot.com/12412685

您可能希望在通知处理程序中收听在电话呼叫和停止/启动音频会话等中断期间触发的 UIApplicationWillResignActiveNotificationUIApplicationDidBecomeActiveNotification 通知。 p>

【讨论】:

以上是关于AUGraph 在 iOS 中的电话中断后停止运行的主要内容,如果未能解决你的问题,请参考以下文章

应用程序被电话iOS中断后音频不会播放

ios 5.0 中的 ios AUGraph 音高偏移

处理音乐应用程序中的 iPhone 中断

停止 AUGraph 的口吃

在 iOS 上更改 AUGraph 的采样率

使用外部事件中断 while 循环