mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 00:27:51 +01:00

Bug: None Change-Id: I3618903ebd6d6888c2a9548dc97761d0d2e74d0a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140040 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28207}
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
/*
|
|
* Copyright 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/media_transport_config.h"
|
|
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/strings/string_builder.h"
|
|
|
|
namespace webrtc {
|
|
|
|
MediaTransportConfig::MediaTransportConfig(
|
|
MediaTransportInterface* media_transport)
|
|
: media_transport(media_transport) {
|
|
RTC_DCHECK(media_transport != nullptr);
|
|
}
|
|
|
|
MediaTransportConfig::MediaTransportConfig(size_t rtp_max_packet_size)
|
|
: rtp_max_packet_size(rtp_max_packet_size) {
|
|
RTC_DCHECK_GT(rtp_max_packet_size, 0);
|
|
}
|
|
|
|
std::string MediaTransportConfig::DebugString()
|
|
const { // TODO(sukhanov): Add rtp_max_packet_size (requires fixing
|
|
// audio_send/receive_stream_unittest.cc).
|
|
rtc::StringBuilder result;
|
|
result << "{media_transport: "
|
|
<< (media_transport != nullptr ? "(Transport)" : "null") << "}";
|
|
return result.Release();
|
|
}
|
|
|
|
} // namespace webrtc
|