// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_AUDIO_GLITCH_INFO_H_ #define MEDIA_BASE_AUDIO_GLITCH_INFO_H_ #include "base/time/time.h" #include "media/base/media_export.h" namespace media { // Audio glitch info. struct MEDIA_EXPORT AudioGlitchInfo { … }; MEDIA_EXPORT bool operator==(const AudioGlitchInfo& lhs, const AudioGlitchInfo& rhs); // Helper class used to accumulate pending AudioGlitchInfo, and reset it when // the accumulated info is read. class AudioGlitchInfo::Accumulator { … }; } // namespace media #endif // MEDIA_BASE_AUDIO_GLITCH_INFO_H_