iPhone开发 - 在背景上录制的AudioQueue服务

时间:2011-02-15 23:42:06

标签: iphone audio background audioqueueservices

我已经建立了一个录音应用程序(比如Apple的'SpeakHere'演示版),我想知道如何修改它以便在BACKGROUND上工作。

每次进入后台时,AudioQueue回调都会冻结,而且我没有收到单个音频字节。

我已经看到iPhone上的Voice Memos应用程序可以在后台录制。

这是我的回调在后台不起作用:

OSStatus AQRecorder::BufferFilled_callback( 
                                       void *                               inUserData,
                                       SInt64                               inPosition,
                                       UInt32                               requestCount,
                                       const void *                         buffer,
                                       UInt32 *                             actualCount) {


    AQRecorder *aqr = (AQRecorder *)inUserData;

    NSLog(@"THIS METHOD IS NOT CALLED ON BACKGROUND");  

    int fd = open(aqr->mWriteFile, O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
    if (fd) {

    *actualCount = (int)write( fd, buffer, requestCount);
    close(fd);

    [aqr->mi setToread:[aqr->mi toread] + requestCount];

} else {
    perror("Fopen");
}

return 0;

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您是否使用应用的info.plist“所需背景模式”键下的相应值启用了背景录制?