1 /* 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #include "logging/rtc_event_log/events/rtc_event_rtcp_packet_incoming.h" 12 13 #include "absl/memory/memory.h" 14 15 namespace webrtc { 16 RtcEventRtcpPacketIncoming(rtc::ArrayView<const uint8_t> packet)17RtcEventRtcpPacketIncoming::RtcEventRtcpPacketIncoming( 18 rtc::ArrayView<const uint8_t> packet) 19 : packet_(packet.data(), packet.size()) {} 20 RtcEventRtcpPacketIncoming(const RtcEventRtcpPacketIncoming & other)21RtcEventRtcpPacketIncoming::RtcEventRtcpPacketIncoming( 22 const RtcEventRtcpPacketIncoming& other) 23 : RtcEvent(other.timestamp_us_), 24 packet_(other.packet_.data(), other.packet_.size()) {} 25 26 RtcEventRtcpPacketIncoming::~RtcEventRtcpPacketIncoming() = default; 27 Copy() const28std::unique_ptr<RtcEventRtcpPacketIncoming> RtcEventRtcpPacketIncoming::Copy() 29 const { 30 return absl::WrapUnique<RtcEventRtcpPacketIncoming>( 31 new RtcEventRtcpPacketIncoming(*this)); 32 } 33 34 } // namespace webrtc 35