Pass pointer to application_data from RtpPacketToSend arriving via RtpSender::SendToNetwork through to Transport::SendRtp, in PacketOptions. Bug: webrtc:8906 Change-Id: Ie75013ed472710f4efcfbcc160e46a6119a1f41d Reviewed-on: https://webrtc-review.googlesource.com/55600 Reviewed-by: Björn Terelius <terelius@webrtc.org> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Commit-Queue: Dino Radaković <dinor@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22174}
20 lines
577 B
C++
20 lines
577 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 "api/call/transport.h"
|
|
|
|
namespace webrtc {
|
|
|
|
PacketOptions::PacketOptions() = default;
|
|
|
|
PacketOptions::~PacketOptions() = default;
|
|
|
|
} // namespace webrtc
|