Bug 1207546 - Integrate WebRTC with audio channels, r=roc

This commit is contained in:
Andrea Marchesini
2015-11-21 01:03:20 +00:00
parent 44be0e2b6a
commit 0b608f19b6
4 changed files with 79 additions and 1 deletions

View File

@@ -4777,6 +4777,11 @@ HTMLMediaElement::IsPlayingThroughTheAudioChannel() const
return true;
}
// If we are playing an external stream.
if (mSrcAttrStream) {
return true;
}
return false;
}