mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 06:40:43 +01:00

TBR=danilchap@webrtc.org Bug: webrtc:9361, webrtc:9582 Change-Id: I0303fc89bafab59e68ec81979e0e4372e79a4f51 Reviewed-on: https://webrtc-review.googlesource.com/91866 Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Commit-Queue: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24170}
19 lines
699 B
C++
19 lines
699 B
C++
/*
|
|
* Copyright (c) 2018 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.
|
|
*/
|
|
|
|
#include "modules/rtp_rtcp/source/rtp_video_header.h"
|
|
|
|
namespace webrtc {
|
|
|
|
RTPVideoHeader::RTPVideoHeader() : playout_delay(), video_timing() {}
|
|
RTPVideoHeader::RTPVideoHeader(const RTPVideoHeader& other) = default;
|
|
RTPVideoHeader::~RTPVideoHeader() = default;
|
|
|
|
} // namespace webrtc
|