// Copyright 2012 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_SILENCE_DETECTOR_H_ #define REMOTING_HOST_AUDIO_SILENCE_DETECTOR_H_ #include <stddef.h> #include <stdint.h> namespace remoting { // Helper used in audio capturers to detect and drop silent audio packets. class AudioSilenceDetector { … }; } // namespace remoting #endif // REMOTING_HOST_AUDIO_SILENCE_DETECTOR_H_