chromium/third_party/blink/renderer/platform/mediastream/media_stream_audio_processor_options.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/mediastream/media_stream_audio_processor_options.h"

namespace blink {

void AudioProcessingProperties::DisableDefaultProperties() {}

bool AudioProcessingProperties::EchoCancellationEnabled() const {}

bool AudioProcessingProperties::EchoCancellationIsWebRtcProvided() const {}

bool AudioProcessingProperties::HasSameReconfigurableSettings(
    const AudioProcessingProperties& other) const {}

bool AudioProcessingProperties::HasSameNonReconfigurableSettings(
    const AudioProcessingProperties& other) const {}

bool AudioProcessingProperties::GainControlEnabled() const {}

media::AudioProcessingSettings
AudioProcessingProperties::ToAudioProcessingSettings(
    bool multi_channel_capture_processing) const {}
}  // namespace blink