• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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)17 RtcEventRtcpPacketIncoming::RtcEventRtcpPacketIncoming(
18     rtc::ArrayView<const uint8_t> packet)
19     : packet_(packet.data(), packet.size()) {}
20 
RtcEventRtcpPacketIncoming(const RtcEventRtcpPacketIncoming & other)21 RtcEventRtcpPacketIncoming::RtcEventRtcpPacketIncoming(
22     const RtcEventRtcpPacketIncoming& other)
23     : RtcEvent(other.timestamp_us_),
24       packet_(other.packet_.data(), other.packet_.size()) {}
25 
26 RtcEventRtcpPacketIncoming::~RtcEventRtcpPacketIncoming() = default;
27 
GetType() const28 RtcEvent::Type RtcEventRtcpPacketIncoming::GetType() const {
29   return RtcEvent::Type::RtcpPacketIncoming;
30 }
31 
IsConfigEvent() const32 bool RtcEventRtcpPacketIncoming::IsConfigEvent() const {
33   return false;
34 }
35 
Copy() const36 std::unique_ptr<RtcEventRtcpPacketIncoming> RtcEventRtcpPacketIncoming::Copy()
37     const {
38   return absl::WrapUnique<RtcEventRtcpPacketIncoming>(
39       new RtcEventRtcpPacketIncoming(*this));
40 }
41 
42 }  // namespace webrtc
43