// Copyright 2024 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_FORMATS_HLS_TAG_RECORDER_H_ #define MEDIA_FORMATS_HLS_TAG_RECORDER_H_ #include <stdint.h> #include "media/base/media_export.h" namespace media::hls { // A TagRecorder is used to measure frequenceies of present tags and their // corresponding attributes inside playlists. class MEDIA_EXPORT TagRecorder { … }; } // namespace media::hls #endif // MEDIA_FORMATS_HLS_TAG_RECORDER_H_