mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

This will later allow simulcast to be set up without any SDP manipulation. Currently limited to only one layer as the SDP generated is not spec compliant and more work is required to support simulcast. Initial encoding parameters are deferred and applied when the ssrc is set on the sender. This allows parameters to be changed before negotiation is completed. Bug: webrtc:7600 Change-Id: I0a31cd1c2bfc72ebb61ce0fa4fa69d87e3d8b74d Reviewed-on: https://webrtc-review.googlesource.com/95488 Commit-Queue: Florent Castelli <orphis@webrtc.org> Reviewed-by: Seth Hampson <shampson@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24917}
28 lines
821 B
C++
28 lines
821 B
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/rtpsenderinterface.h"
|
|
|
|
namespace webrtc {
|
|
|
|
void RtpSenderInterface::SetFrameEncryptor(
|
|
rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor) {}
|
|
|
|
rtc::scoped_refptr<FrameEncryptorInterface>
|
|
RtpSenderInterface::GetFrameEncryptor() const {
|
|
return nullptr;
|
|
}
|
|
|
|
std::vector<RtpEncodingParameters> RtpSenderInterface::init_send_encodings()
|
|
const {
|
|
return {};
|
|
}
|
|
|
|
} // namespace webrtc
|