summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Smith <brian@dbsoft.org>2023-08-14 13:06:15 -0500
committerBrian Smith <brian@dbsoft.org>2023-08-14 13:06:15 -0500
commitd16b014115b610e2f741c0f51a61b5643397bcba (patch)
treed8bc077ac33775f20828f48defa4ef3a0f919ddd
parent3bb0c18a5915b789beda27598f9d578516189f90 (diff)
downloaduxp-d16b014115b610e2f741c0f51a61b5643397bcba.tar.gz
No Issue - Fix building WebRTC/Basilisk with --enable-debug
A bogus MOZ_ASSERT was added at some point, this should make it work.
-rwxr-xr-xmedia/webrtc/signaling/src/media-conduit/VideoConduit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp b/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp
index e6db06a685..37dcf05005 100755
--- a/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp
+++ b/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp
@@ -105,7 +105,7 @@ WebrtcVideoConduit::~WebrtcVideoConduit()
// Release AudioConduit first by dropping reference on MainThread, where it expects to be
SyncTo(nullptr);
- MOZ_ASSERT(!mSendStream && !mRecvStream, "Call DeleteStreams prior to ~WebrtcVideoConduit.");
+ MOZ_ASSERT(!mPtrViEBase, "Call DeleteStreams prior to ~WebrtcVideoConduit.");
}
bool WebrtcVideoConduit::SetLocalSSRC(unsigned int ssrc)