8 to 9 minute the Video session remain alive in iPhone 7 device. But after that the remote video get frozen. I tried to disable the NSNotificationCenter but that did not resolved it.
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(captureSessionDidStartRunning)
name:AVCaptureSessionDidStartRunningNotification
object:nil];
- (void)captureSessionDidStartRunning {
dispatch_async(dispatch_get_main_queue(), ^{
[self configureLocalPreview];
});
}
8 to 9 minute the Video session remain alive in iPhone 7 device. But after that the remote video get frozen. I tried to disable the NSNotificationCenter but that did not resolved it.