2014-01-31 09:15:48 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2014 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MODULES_REMOTE_BITRATE_ESTIMATOR_TOOLS_BWE_RTP_H_
|
|
|
|
|
#define MODULES_REMOTE_BITRATE_ESTIMATOR_TOOLS_BWE_RTP_H_
|
2014-01-31 09:15:48 +00:00
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
class Clock;
|
|
|
|
|
class RemoteBitrateEstimator;
|
|
|
|
|
class RemoteBitrateObserver;
|
|
|
|
|
class RtpHeaderParser;
|
2014-08-06 16:26:56 +00:00
|
|
|
namespace test {
|
|
|
|
|
class RtpFileReader;
|
2014-01-31 09:15:48 +00:00
|
|
|
}
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
bool ParseArgsAndSetupEstimator(int argc,
|
|
|
|
|
char** argv,
|
|
|
|
|
webrtc::Clock* clock,
|
|
|
|
|
webrtc::RemoteBitrateObserver* observer,
|
2014-08-06 16:26:56 +00:00
|
|
|
webrtc::test::RtpFileReader** rtp_reader,
|
2014-01-31 09:15:48 +00:00
|
|
|
webrtc::RtpHeaderParser** parser,
|
|
|
|
|
webrtc::RemoteBitrateEstimator** estimator,
|
|
|
|
|
std::string* estimator_used);
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MODULES_REMOTE_BITRATE_ESTIMATOR_TOOLS_BWE_RTP_H_
|