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_outgoing.h" 12 13 #include "absl/memory/memory.h" 14 15 namespace webrtc { 16 RtcEventRtcpPacketOutgoing(rtc::ArrayView<const uint8_t> packet)17RtcEventRtcpPacketOutgoing::RtcEventRtcpPacketOutgoing( 18 rtc::ArrayView<const uint8_t> packet) 19 : packet_(packet.data(), packet.size()) {} 20 RtcEventRtcpPacketOutgoing(const RtcEventRtcpPacketOutgoing & other)21RtcEventRtcpPacketOutgoing::RtcEventRtcpPacketOutgoing( 22 const RtcEventRtcpPacketOutgoing& other) 23 : RtcEvent(other.timestamp_us_), 24 packet_(other.packet_.data(), other.packet_.size()) {} 25 26 RtcEventRtcpPacketOutgoing::~RtcEventRtcpPacketOutgoing() = default; 27 Copy() const28std::unique_ptr<RtcEventRtcpPacketOutgoing> RtcEventRtcpPacketOutgoing::Copy() 29 const { 30 return absl::WrapUnique<RtcEventRtcpPacketOutgoing>( 31 new RtcEventRtcpPacketOutgoing(*this)); 32 } 33 34 } // namespace webrtc 35