Closed
Bug 805691
Opened 13 years ago
Closed 13 years ago
WebRTC crash [@MediaPipelineTransmit::Init]
Categories
(Core :: WebRTC: Signaling, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 792175
People
(Reporter: posidron, Unassigned)
References
Details
(Keywords: crash)
Attachments
(2 files)
media/webrtc/signaling/src/mediapipeline/MediaPipeline.cpp
nsresult MediaPipelineTransmit::Init() {
// TODO(ekr@rtfm.com): Check for errors
MOZ_MTLOG(PR_LOG_DEBUG, "Attaching pipeline to stream "
<< static_cast<void *>(stream_) <<
" conduit type=" <<
(conduit_->type() == MediaSessionConduit::AUDIO ?
"audio" : "video") <<
" hints=" << stream_->GetHintContents());
content/media/nsDOMMediaStream.h
uint32_t GetHintContents() const { return mHintContents; }
Tested with mc-central changeset: 111360:58c8080a1a7c
Reporter | ||
Comment 1•13 years ago
|
||
Comment 2•13 years ago
|
||
This appears to be the PCImpl being shut down while we're in the middle of generating an answer, causing stream to be NULL unexpectedly.
This is very likely caused by bug 792175; after that lands this bug should not occur, so duping to that.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•