mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

Add base class NetworkPredictor and NetworkPredictorFactory in /api, make it possible to inject customized NetworkPredictor in PeerConnectionFactory level. The NetworkPredictor object will be pass down to GoogCCNetworkControl and DelayBasedBwe. Bug: webrtc:10492 Change-Id: Iceeadbe1c9388b11ce4ac01ee56554cb0bf64d04 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/130201 Commit-Queue: Ying Wang <yinwa@webrtc.org> Reviewed-by: Per Kjellander <perkj@webrtc.org> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Reviewed-by: Christoffer Rodbro <crodbro@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27543}
52 lines
1.8 KiB
C++
52 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 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.
|
|
*/
|
|
|
|
#ifndef API_TRANSPORT_GOOG_CC_FACTORY_H_
|
|
#define API_TRANSPORT_GOOG_CC_FACTORY_H_
|
|
#include <memory>
|
|
|
|
#include "api/network_state_predictor.h"
|
|
#include "api/transport/network_control.h"
|
|
|
|
namespace webrtc {
|
|
class RtcEventLog;
|
|
|
|
class GoogCcNetworkControllerFactory
|
|
: public NetworkControllerFactoryInterface {
|
|
public:
|
|
explicit GoogCcNetworkControllerFactory(RtcEventLog* event_log);
|
|
explicit GoogCcNetworkControllerFactory(
|
|
RtcEventLog* event_log,
|
|
NetworkStatePredictorFactoryInterface* network_state_predictor_factory);
|
|
std::unique_ptr<NetworkControllerInterface> Create(
|
|
NetworkControllerConfig config) override;
|
|
TimeDelta GetProcessInterval() const override;
|
|
|
|
private:
|
|
RtcEventLog* const event_log_;
|
|
NetworkStatePredictorFactoryInterface* const network_state_predictor_factory_;
|
|
};
|
|
|
|
// Factory to create packet feedback only GoogCC, this can be used for
|
|
// connections providing packet receive time feedback but no other reports.
|
|
class GoogCcFeedbackNetworkControllerFactory
|
|
: public NetworkControllerFactoryInterface {
|
|
public:
|
|
explicit GoogCcFeedbackNetworkControllerFactory(RtcEventLog* event_log);
|
|
std::unique_ptr<NetworkControllerInterface> Create(
|
|
NetworkControllerConfig config) override;
|
|
TimeDelta GetProcessInterval() const override;
|
|
|
|
private:
|
|
RtcEventLog* const event_log_;
|
|
};
|
|
} // namespace webrtc
|
|
|
|
#endif // API_TRANSPORT_GOOG_CC_FACTORY_H_
|