blob: 37e3870d3eb27b6cc34b0396e18a5ccd3834001e [file] [log] [blame]
elad.alon5bbf43f2017-03-09 06:40:08 -08001/*
2 * Copyright (c) 2017 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_CONGESTION_CONTROLLER_CONGESTION_CONTROLLER_UNITTESTS_HELPER_H_
12#define MODULES_CONGESTION_CONTROLLER_CONGESTION_CONTROLLER_UNITTESTS_HELPER_H_
elad.alon5bbf43f2017-03-09 06:40:08 -080013
14#include <vector>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
elad.alon5bbf43f2017-03-09 06:40:08 -080017
18namespace webrtc {
19void ComparePacketFeedbackVectors(const std::vector<PacketFeedback>& truth,
20 const std::vector<PacketFeedback>& input);
21} // namespace webrtc
22
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020023#endif // MODULES_CONGESTION_CONTROLLER_CONGESTION_CONTROLLER_UNITTESTS_HELPER_H_