VideoCore-Inactive icon indicating copy to clipboard operation
VideoCore-Inactive copied to clipboard

VideoCore EnterBackground then EnterForeground couldn't upload Stream?

Open AlbertBoy opened this issue 8 years ago • 2 comments

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。。。

AlbertBoy avatar Jun 22 '16 02:06 AlbertBoy

I have this issue as well.....

satyamub avatar Sep 13 '16 07:09 satyamub

I had to stop stream when app goes in background otherwise it crashes when app comes in foreground. No proper solution found for this.

LeenaTekani avatar Dec 28 '16 11:12 LeenaTekani