Bug: None Change-Id: Ib5be0e984eff3a652504106552b0779be2c316ca Reviewed-on: https://webrtc-review.googlesource.com/c/104941 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Bjorn Mellem <mellem@webrtc.org> Commit-Queue: Sebastian Jansson <srte@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25076}
48 lines
1.5 KiB
C++
48 lines
1.5 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/transport/network_control.h"
|
|
|
|
namespace webrtc {
|
|
class RtcEventLog;
|
|
|
|
class GoogCcNetworkControllerFactory
|
|
: public NetworkControllerFactoryInterface {
|
|
public:
|
|
explicit GoogCcNetworkControllerFactory(RtcEventLog*);
|
|
std::unique_ptr<NetworkControllerInterface> Create(
|
|
NetworkControllerConfig config) override;
|
|
TimeDelta GetProcessInterval() const override;
|
|
|
|
private:
|
|
RtcEventLog* const event_log_;
|
|
};
|
|
|
|
// 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*);
|
|
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_
|