зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1397793 - Use a ControlMessage to switch between passthrough and processing mode for microphone input. r=pehsrons
MozReview-Commit-ID: EIvQKZf7oGq --HG-- extra : rebase_source : cf84d44df1fadd262283946641d7ce67f779b7d2 extra : histedit_source : 71388af2bab6cbfb3d6a4c700b2419899811e680
This commit is contained in:
Родитель
58fc6f439a
Коммит
de142c0970
|
@ -494,12 +494,6 @@ private:
|
|||
// These allocate/configure and release the channel
|
||||
bool AllocChannel();
|
||||
void FreeChannel();
|
||||
|
||||
// This is true when all processing is disabled, we can skip
|
||||
// packetization, resampling and other processing passes.
|
||||
bool PassThrough() {
|
||||
return mSkipProcessing;
|
||||
}
|
||||
template<typename T>
|
||||
void InsertInGraph(const T* aBuffer,
|
||||
size_t aFrames,
|
||||
|
@ -511,6 +505,16 @@ private:
|
|||
TrackRate aRate,
|
||||
uint32_t aChannels);
|
||||
|
||||
|
||||
// This is true when all processing is disabled, we can skip
|
||||
// packetization, resampling and other processing passes.
|
||||
bool PassThrough() {
|
||||
return mSkipProcessing;
|
||||
}
|
||||
void SetPassThrough(bool aPassThrough) {
|
||||
mSkipProcessing = aPassThrough;
|
||||
}
|
||||
|
||||
RefPtr<mozilla::AudioInput> mAudioInput;
|
||||
RefPtr<WebRTCAudioDataListener> mListener;
|
||||
|
||||
|
@ -548,7 +552,8 @@ private:
|
|||
// mSkipProcessing is true if none of the processing passes are enabled,
|
||||
// because of prefs or constraints. This allows simply copying the audio into
|
||||
// the MSG, skipping resampling and the whole webrtc.org code.
|
||||
std::atomic_bool mSkipProcessing;
|
||||
// This is read and written to only on the MSG thread.
|
||||
bool mSkipProcessing;
|
||||
|
||||
// To only update microphone when needed, we keep track of previous settings.
|
||||
MediaEnginePrefs mLastPrefs;
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include "mtransport/runnable_utils.h"
|
||||
#include "nsAutoPtr.h"
|
||||
#include "AudioConverter.h"
|
||||
#include "MediaStreamGraphImpl.h"
|
||||
|
||||
// scoped_ptr.h uses FF
|
||||
#ifdef FF
|
||||
|
@ -522,8 +523,7 @@ MediaEngineWebRTCMicrophoneSource::UpdateSingleSource(
|
|||
#undef HANDLE_APM_ERROR
|
||||
|
||||
void
|
||||
MediaEngineWebRTCMicrophoneSource::SetLastPrefs(
|
||||
const MediaEnginePrefs& aPrefs)
|
||||
MediaEngineWebRTCMicrophoneSource::SetLastPrefs(const MediaEnginePrefs& aPrefs)
|
||||
{
|
||||
mLastPrefs = aPrefs;
|
||||
|
||||
|
@ -534,11 +534,35 @@ MediaEngineWebRTCMicrophoneSource::SetLastPrefs(
|
|||
that->mSettings->mAutoGainControl.Value() = aPrefs.mAgcOn;
|
||||
that->mSettings->mNoiseSuppression.Value() = aPrefs.mNoiseOn;
|
||||
that->mSettings->mChannelCount.Value() = aPrefs.mChannels;
|
||||
|
||||
class Message : public ControlMessage {
|
||||
public:
|
||||
Message(MediaEngineWebRTCMicrophoneSource* aSource,
|
||||
bool aPassThrough)
|
||||
: ControlMessage(nullptr)
|
||||
, mMicrophoneSource(aSource)
|
||||
, mPassThrough(aPassThrough)
|
||||
{}
|
||||
|
||||
void Run() override
|
||||
{
|
||||
mMicrophoneSource->SetPassThrough(mPassThrough);
|
||||
}
|
||||
|
||||
protected:
|
||||
RefPtr<MediaEngineWebRTCMicrophoneSource> mMicrophoneSource;
|
||||
bool mPassThrough;
|
||||
};
|
||||
|
||||
bool passThrough = !(aPrefs.mAecOn || aPrefs.mAgcOn || aPrefs.mNoiseOn);
|
||||
if (!that->mSources.IsEmpty()) {
|
||||
that->mSources[0]->GraphImpl()->AppendMessage(MakeUnique<Message>(that, passThrough));
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
nsresult
|
||||
MediaEngineWebRTCMicrophoneSource::Deallocate(AllocationHandle* aHandle)
|
||||
{
|
||||
|
@ -675,7 +699,7 @@ MediaEngineWebRTCMicrophoneSource::NotifyOutputData(MediaStreamGraph* aGraph,
|
|||
{
|
||||
if (!PassThrough()) {
|
||||
mAudioOutputObserver->InsertFarEnd(aBuffer, aFrames, false,
|
||||
aRate, aChannels);
|
||||
aRate, aChannels);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -39,11 +39,12 @@ if CONFIG['MOZ_WEBRTC']:
|
|||
'MediaEngineWebRTC.cpp',
|
||||
]
|
||||
LOCAL_INCLUDES += [
|
||||
'..',
|
||||
'/dom/base',
|
||||
'/media/libyuv/libyuv/include',
|
||||
'/media/webrtc/signaling/src/common',
|
||||
'/media/webrtc/signaling/src/common/browser_logging',
|
||||
'/media/webrtc/trunk',
|
||||
'/media/webrtc/trunk'
|
||||
]
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
|
|
Загрузка…
Ссылка в новой задаче