Fix do not initialize OpenGL if VideoView is creating with the app in background

Bug: webrtc:8498
Change-Id: I354caf9c2b4dc9e596e97cd9a80dac71b6c89289
Reviewed-on: https://webrtc-review.googlesource.com/20980
Reviewed-by: Magnus Jedvert <magjed@webrtc.org>
Commit-Queue: Magnus Jedvert <magjed@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20611}
This commit is contained in:
Gustavo Garcia
2017-11-07 17:54:03 +01:00
committed by Commit Bot
parent 8a47db590d
commit 7281f92e72

View File

@ -183,7 +183,9 @@
RTCEAGLVideoView *strongSelf = weakSelf;
[strongSelf displayLinkTimerDidFire];
}];
[self setupGL];
if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateActive) {
[self setupGL];
}
return YES;
}