/* * Copyright 2019 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 MODULES_RTP_RTCP_INCLUDE_REPORT_BLOCK_DATA_H_ #define MODULES_RTP_RTCP_INCLUDE_REPORT_BLOCK_DATA_H_ #include "api/units/time_delta.h" #include "api/units/timestamp.h" #include "modules/rtp_rtcp/source/rtcp_packet/report_block.h" namespace webrtc { // Represents fields and derived information received in RTCP report block // attached to RTCP sender report or RTCP receiver report, as described in // https://www.rfc-editor.org/rfc/rfc3550#section-6.4.1 class ReportBlockData { … }; class ReportBlockDataObserver { … }; } // namespace webrtc #endif // MODULES_RTP_RTCP_INCLUDE_REPORT_BLOCK_DATA_H_