/* * Copyright 2016 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef PC_TRACK_MEDIA_INFO_MAP_H_ #define PC_TRACK_MEDIA_INFO_MAP_H_ #include <stdint.h> #include <map> #include <memory> #include <string> #include <vector> #include "absl/types/optional.h" #include "api/array_view.h" #include "api/media_stream_interface.h" #include "api/scoped_refptr.h" #include "media/base/media_channel.h" #include "pc/rtp_receiver.h" #include "pc/rtp_sender.h" #include "rtc_base/ref_count.h" namespace webrtc { // Audio/video tracks and sender/receiver statistical information are associated // with each other based on attachments to RTP senders/receivers. This class // maps that relationship so that "infos" can be obtained from SSRCs and tracks // can be obtained from "infos". class TrackMediaInfoMap { … }; } // namespace webrtc #endif // PC_TRACK_MEDIA_INFO_MAP_H_