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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "api/rtp_transceiver_interface.h"
|
2018-07-19 10:39:30 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-23 19:25:51 +02:00
|
|
|
RTCError RtpTransceiverInterface::SetCodecPreferences(
|
2018-09-24 19:10:40 +02:00
|
|
|
rtc::ArrayView<RtpCodecCapability>) {
|
|
|
|
|
RTC_NOTREACHED() << "Not implemented";
|
2019-04-23 19:25:51 +02:00
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<RtpCodecCapability> RtpTransceiverInterface::codec_preferences()
|
|
|
|
|
const {
|
|
|
|
|
return {};
|
2018-09-24 19:10:40 +02:00
|
|
|
}
|
|
|
|
|
|
2018-07-19 10:39:30 +02:00
|
|
|
} // namespace webrtc
|