WebRTCDemo: move the deletion of CritSect to end of the dtor to fix a crash in Android video renderer.
BUG=3368 TEST=Manual Test Review URL: https://webrtc-codereview.appspot.com/21519005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6220 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
8e755c1ad2
commit
21f7d6d2fe
@ -245,7 +245,6 @@ AndroidNativeOpenGl2Channel::AndroidNativeOpenGl2Channel(
|
||||
AndroidNativeOpenGl2Channel::~AndroidNativeOpenGl2Channel() {
|
||||
WEBRTC_TRACE(kTraceInfo, kTraceVideoRenderer, _id,
|
||||
"AndroidNativeOpenGl2Channel dtor");
|
||||
delete &_renderCritSect;
|
||||
if (_jvm) {
|
||||
// get the JNI env for this thread
|
||||
bool isAttached = false;
|
||||
@ -277,6 +276,8 @@ AndroidNativeOpenGl2Channel::~AndroidNativeOpenGl2Channel() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
delete &_renderCritSect;
|
||||
}
|
||||
|
||||
int32_t AndroidNativeOpenGl2Channel::Init(int32_t zOrder,
|
||||
|
Loading…
x
Reference in New Issue
Block a user