2019-05-21 11:12:57 -07:00
|
|
|
/*
|
|
|
|
|
* 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"
|
|
|
|
|
|
2019-05-23 15:50:38 -07:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "rtc_base/string_utils.h"
|
|
|
|
|
#include "rtc_base/strings/string_builder.h"
|
|
|
|
|
|
2019-05-21 11:12:57 -07:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
2019-05-23 15:50:38 -07:00
|
|
|
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();
|
2019-05-21 11:12:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|