2018-02-27 17:07:02 +01:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-10-09 19:02:03 +02:00
|
|
|
#ifndef API_TRANSPORT_GOOG_CC_FACTORY_H_
|
|
|
|
|
#define API_TRANSPORT_GOOG_CC_FACTORY_H_
|
2018-05-03 11:18:32 +02:00
|
|
|
#include <memory>
|
|
|
|
|
|
2018-05-09 10:33:39 +02:00
|
|
|
#include "api/transport/network_control.h"
|
2018-02-27 17:07:02 +01:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
class RtcEventLog;
|
|
|
|
|
|
|
|
|
|
class GoogCcNetworkControllerFactory
|
|
|
|
|
: public NetworkControllerFactoryInterface {
|
|
|
|
|
public:
|
|
|
|
|
explicit GoogCcNetworkControllerFactory(RtcEventLog*);
|
2018-05-03 11:18:32 +02:00
|
|
|
std::unique_ptr<NetworkControllerInterface> Create(
|
2018-03-13 11:38:04 +01:00
|
|
|
NetworkControllerConfig config) override;
|
2018-02-27 17:07:02 +01:00
|
|
|
TimeDelta GetProcessInterval() const override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
RtcEventLog* const event_log_;
|
|
|
|
|
};
|
2018-08-06 13:20:36 +02:00
|
|
|
|
|
|
|
|
// 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_;
|
|
|
|
|
};
|
2018-02-27 17:07:02 +01:00
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2018-10-09 19:02:03 +02:00
|
|
|
#endif // API_TRANSPORT_GOOG_CC_FACTORY_H_
|