/* * Copyright (c) 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 MODULES_RTP_RTCP_SOURCE_RTP_PACKET_RECEIVED_H_ #define MODULES_RTP_RTCP_SOURCE_RTP_PACKET_RECEIVED_H_ #include <stdint.h> #include <utility> #include "api/array_view.h" #include "api/ref_counted_base.h" #include "api/rtp_headers.h" #include "api/scoped_refptr.h" #include "api/units/timestamp.h" #include "modules/rtp_rtcp/source/rtp_packet.h" #include "rtc_base/network/ecn_marking.h" namespace webrtc { // Class to hold rtp packet with metadata for receiver side. // The metadata is not parsed from the rtp packet, but may be derived from the // data that is parsed from the rtp packet. class RtpPacketReceived : public RtpPacket { … }; } // namespace webrtc #endif // MODULES_RTP_RTCP_SOURCE_RTP_PACKET_RECEIVED_H_