我有一个使用AVCaptureSession来处理视频的应用。我喜欢写零内存泄漏,并正确处理所有对象。
这就是为什么这篇帖子 - How to properly release an 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,但无济于事。它没有太大变化。
有什么建议吗? 谢谢!
答案 0 :(得分:0)
我对你的问题没有答案。 但我也读了thread you mentioned,我正在努力实现它。 我很惊讶你在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函数是否被调用?我没有被召唤,我正试图找出原因。