2018-07-19 10:39:30 +02: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/rtptransceiverinterface.h"
|
|
|
|
|
|
2018-10-23 12:03:01 +02:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
|
2018-07-19 10:39:30 +02:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
RtpTransceiverInit::RtpTransceiverInit() = default;
|
|
|
|
|
|
2018-07-20 11:09:32 +02:00
|
|
|
RtpTransceiverInit::RtpTransceiverInit(const RtpTransceiverInit& rhs) = default;
|
|
|
|
|
|
2018-07-19 10:39:30 +02:00
|
|
|
RtpTransceiverInit::~RtpTransceiverInit() = default;
|
|
|
|
|
|
|
|
|
|
absl::optional<RtpTransceiverDirection>
|
|
|
|
|
RtpTransceiverInterface::fired_direction() const {
|
|
|
|
|
return absl::nullopt;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-24 19:10:40 +02:00
|
|
|
void RtpTransceiverInterface::SetCodecPreferences(
|
|
|
|
|
rtc::ArrayView<RtpCodecCapability>) {
|
|
|
|
|
RTC_NOTREACHED() << "Not implemented";
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-19 10:39:30 +02:00
|
|
|
} // namespace webrtc
|