Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.h

Issue 1247293002: Add support for transport wide sequence numbers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase, again Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_
12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_
13 13
14 #include <vector> 14 #include <vector>
15 15
16 #include "webrtc/modules/bitrate_controller/send_time_history.h" 16 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h"
17 #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" 17 #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h"
18 18
19 namespace webrtc { 19 namespace webrtc {
20 namespace testing { 20 namespace testing {
21 namespace bwe { 21 namespace bwe {
22 22
23 class FullBweSender : public BweSender, public RemoteBitrateObserver { 23 class FullBweSender : public BweSender, public RemoteBitrateObserver {
24 public: 24 public:
25 FullBweSender(int kbps, BitrateObserver* observer, Clock* clock); 25 FullBweSender(int kbps, BitrateObserver* observer, Clock* clock);
26 virtual ~FullBweSender(); 26 virtual ~FullBweSender();
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 private: 60 private:
61 int64_t last_feedback_ms_; 61 int64_t last_feedback_ms_;
62 std::vector<PacketInfo> packet_feedback_vector_; 62 std::vector<PacketInfo> packet_feedback_vector_;
63 }; 63 };
64 64
65 } // namespace bwe 65 } // namespace bwe
66 } // namespace testing 66 } // namespace testing
67 } // namespace webrtc 67 } // namespace webrtc
68 68
69 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ 69 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_
OLDNEW
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/send_time_history_unittest.cc ('k') | webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698