// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_AUDIO_VOLUME_FILTER_H_ #define REMOTING_HOST_AUDIO_VOLUME_FILTER_H_ #include "remoting/host/audio_silence_detector.h" namespace remoting { // A component to modify input audio sample to apply the audio level. This class // is used on platforms which returns non-adjusted audio samples, e.g. Windows. // This class supports frames with 16 bits per sample only. class AudioVolumeFilter { … }; } // namespace remoting #endif // REMOTING_HOST_AUDIO_VOLUME_FILTER_H_