// Copyright 2014 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_DISCARD_HELPER_H_ #define MEDIA_BASE_AUDIO_DISCARD_HELPER_H_ #include <stddef.h> #include "base/time/time.h" #include "media/base/audio_timestamp_helper.h" #include "media/base/decoder_buffer.h" #include "media/base/media_export.h" #include "media/base/timestamp_constants.h" namespace media { class AudioBuffer; // Helper class for managing timestamps and discard events around decoding. class MEDIA_EXPORT AudioDiscardHelper { … }; } // namespace media #endif // MEDIA_BASE_AUDIO_DISCARD_HELPER_H_