From 2da19b06699d87158d4362ef7b7f2f29cd56f9ef Mon Sep 17 00:00:00 2001 From: Robert O'Callahan Date: Mon, 31 Aug 2015 16:54:39 +1200 Subject: [PATCH] Bug 1201393. Remove usage of FLAG_BLOCK_INPUT from MediaRecorder. r=jwwang FLAG_BLOCK_INPUT is not needed on mPipeStream because nothing should cause mPipeStream to block. --HG-- extra : commitid : 660ZZiOdNCM extra : rebase_source : 065351c8f7233072afa623d4e8ec0fb1dc2ceb47 --- dom/media/MediaRecorder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/media/MediaRecorder.cpp b/dom/media/MediaRecorder.cpp index 431b5dcfeaed..ffe0adfe48d9 100644 --- a/dom/media/MediaRecorder.cpp +++ b/dom/media/MediaRecorder.cpp @@ -792,7 +792,7 @@ MediaRecorder::MediaRecorder(AudioNode& aSrcAudioNode, AudioNodeStream* ns = aSrcAudioNode.GetStream(); if (ns) { mInputPort = mPipeStream->AllocateInputPort(aSrcAudioNode.GetStream(), - MediaInputPort::FLAG_BLOCK_INPUT, + 0, 0, aSrcOutput); }