// Copyright 2023 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_MUXERS_MUXER_TIMESTAMP_ADAPTER_H_ #define MEDIA_MUXERS_MUXER_TIMESTAMP_ADAPTER_H_ #include <memory> #include <string> #include "base/containers/circular_deque.h" #include "base/time/time.h" #include "base/timer/elapsed_timer.h" #include "media/base/audio_parameters.h" #include "media/base/media_export.h" #include "media/muxers/muxer.h" namespace media { // Adapter for muxers that emits incoming samples in monotonically increasing // timestamp order, and covers MediaRecorder pause/resume behavior as well as // tracks ending and enabledness. // This class is thread-compatible. class MEDIA_EXPORT MuxerTimestampAdapter { … }; } // namespace media #endif // MEDIA_MUXERS_MUXER_TIMESTAMP_ADAPTER_H_