1 /* 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef MODULES_REMOTE_BITRATE_ESTIMATOR_TOOLS_BWE_RTP_H_ 12 #define MODULES_REMOTE_BITRATE_ESTIMATOR_TOOLS_BWE_RTP_H_ 13 14 #include <memory> 15 16 #include "modules/rtp_rtcp/include/rtp_header_extension_map.h" 17 #include "test/rtp_file_reader.h" 18 19 bool ParseArgsAndSetupRtpReader( 20 int argc, 21 char** argv, 22 std::unique_ptr<webrtc::test::RtpFileReader>& rtp_reader, 23 webrtc::RtpHeaderExtensionMap& rtp_header_extensions); 24 25 #endif // MODULES_REMOTE_BITRATE_ESTIMATOR_TOOLS_BWE_RTP_H_ 26