4

我有一个使用 AVCaptureSession 处理视频的应用程序。我喜欢写零内存泄漏和正确处理所有对象。

这就是为什么这篇文章 -如何正确释放 AVCaptureSession - 非常有帮助 - 因为[session stopRunning]是异步的,您不能只是停止会话并继续释放持有的对象。

这样就解决了。这是代码:

// Releases the object - used for late session cleanup
static void capture_cleanup(void* p)
{
    CaptureScreenController* csc = (CaptureScreenController*)p; 
    [csc release];  // releases capture session if dealloc is called
}

// Stops the capture - this stops the capture, and upon stopping completion releases self.
- (void)stopCapture {
    // Retain self, it will be released in capture_cleanup. This is to ensure cleanup is done properly,
    // without the object being released in the middle of it.
    [self retain];

    // Stop the session
    [session stopRunning];

    // Add cleanup code when dispatch queue end 
    dispatch_queue_t queue = dispatch_queue_create("capture_screen", NULL);
    dispatch_set_context(queue, self);
    dispatch_set_finalizer_f(queue, capture_cleanup);
    [dataOutput setSampleBufferDelegate: self queue: queue];
    dispatch_release(queue);
}

现在我来支持应用程序中断作为一个电话,或按主页按钮。如果应用程序进入后台,我想停止捕获并弹出我的视图控制器。

我似乎无法在 applicationDidEnterBackground 上下文中执行此操作。dealloc 永远不会被调用,我的对象仍然存在,当我重新打开应用程序时,框架会自动开始进入。

我尝试使用 beginBackgroundTaskWithExpirationHandler 但无济于事。它没有太大变化。

有什么建议么?谢谢!

4

1 回答 1

0

你的问题我没有答案。但我也阅读了你提到的线程,我正在尝试实现它。我很惊讶你在 stopCapture 函数中有这段代码:

// Add cleanup code when dispatch queue end 
dispatch_queue_t queue = dispatch_queue_create("capture_screen", NULL);
dispatch_set_context(queue, self);
dispatch_set_finalizer_f(queue, capture_cleanup);
[dataOutput setSampleBufferDelegate: self queue: queue];
dispatch_release(queue);

我认为代码是会话初始化的一部分。这对你有用吗?

您的 capture_cleanup 函数是否被调用?我的没有被调用,我试图找出原因。

于 2011-03-16T18:06:24.973 回答