This change allows the application to limit the bitrate of the outgoing audio and video streams at runtime. The API roughly follows the WebRTC API draft, defining the RTCRtpParameters structure witn exactly one encoding (simulcast streams are not exposed in the API for now). (https://www.w3.org/TR/webrtc/#idl-def-RTCRtpParameters) BUG= Review URL: https://codereview.webrtc.org/1788583004 Cr-Commit-Position: refs/heads/master@{#12025}
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2004 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 "webrtc/media/base/mediaengine.h"
|
|
|
|
#if !defined(DISABLE_MEDIA_ENGINE_FACTORY)
|
|
|
|
#if defined(HAVE_WEBRTC_VOICE) && defined(HAVE_WEBRTC_VIDEO)
|
|
#include "webrtc/media/engine/webrtcmediaengine.h"
|
|
#endif // HAVE_WEBRTC_VOICE && HAVE_WEBRTC_VIDEO
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif // HAVE_CONFIG
|
|
|
|
namespace cricket {
|
|
|
|
MediaEngineFactory::MediaEngineCreateFunction
|
|
MediaEngineFactory::create_function_ = NULL;
|
|
|
|
MediaEngineFactory::MediaEngineCreateFunction
|
|
MediaEngineFactory::SetCreateFunction(MediaEngineCreateFunction function) {
|
|
MediaEngineCreateFunction old_function = create_function_;
|
|
create_function_ = function;
|
|
return old_function;
|
|
}
|
|
|
|
}; // namespace cricket
|
|
|
|
#endif // DISABLE_MEDIA_ENGINE_FACTORY
|
|
|
|
namespace cricket {
|
|
|
|
webrtc::RtpParameters CreateRtpParametersWithOneEncoding() {
|
|
webrtc::RtpParameters parameters;
|
|
webrtc::RtpEncodingParameters encoding;
|
|
parameters.encodings.push_back(encoding);
|
|
return parameters;
|
|
}
|
|
|
|
}; // namespace cricket
|