Open AlbertBoy opened 8 years ago
When videoCore enterBackground a short time then enterForeground ,the current stream couldn't upload Stream to server。How can I resolve this problem?
(void) notification: (NSNotification*) notification { if([notification.name isEqualToString:UIApplicationDidEnterBackgroundNotification]) {
_mixer->mixPaused(true);
} else if([notification.name isEqualToString:UIApplicationWillEnterForegroundNotification]) {
_mixer->mixPaused(false);
} }
this is not enable。。。
I have this issue as well.....
I had to stop stream when app goes in background otherwise it crashes when app comes in foreground. No proper solution found for this.
When videoCore enterBackground a short time then enterForeground ,the current stream couldn't upload Stream to server。How can I resolve this problem?
(void) notification: (NSNotification*) notification { if([notification.name isEqualToString:UIApplicationDidEnterBackgroundNotification]) {
} else if([notification.name isEqualToString:UIApplicationWillEnterForegroundNotification]) {
} }
this is not enable。。。