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

Side by Side Diff: webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Rebase to master Created 4 years, 2 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
« no previous file with comments | « webrtc/test/fuzzers/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "webrtc/call/rtc_event_log.h" 11 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
12 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" 12 #include "webrtc/modules/congestion_controller/include/congestion_controller.h"
13 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat or.h" 13 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat or.h"
14 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 14 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
15 15
16 namespace webrtc { 16 namespace webrtc {
17 17
18 class NullBitrateObserver : public CongestionController::Observer, 18 class NullBitrateObserver : public CongestionController::Observer,
19 public RemoteBitrateObserver { 19 public RemoteBitrateObserver {
20 public: 20 public:
21 ~NullBitrateObserver() override {} 21 ~NullBitrateObserver() override {}
(...skipping 29 matching lines...) Expand all
51 ByteReader<uint16_t>::ReadBigEndian(&data[i]); 51 ByteReader<uint16_t>::ReadBigEndian(&data[i]);
52 i += sizeof(uint16_t); 52 i += sizeof(uint16_t);
53 rbe->IncomingPacket(arrival_time_ms, payload_size, header); 53 rbe->IncomingPacket(arrival_time_ms, payload_size, header);
54 clock.AdvanceTimeMilliseconds(5); 54 clock.AdvanceTimeMilliseconds(5);
55 arrival_time_ms += ByteReader<uint8_t>::ReadBigEndian(&data[i]); 55 arrival_time_ms += ByteReader<uint8_t>::ReadBigEndian(&data[i]);
56 arrival_time_ms += sizeof(uint8_t); 56 arrival_time_ms += sizeof(uint8_t);
57 } 57 }
58 rbe->Process(); 58 rbe->Process();
59 } 59 }
60 } // namespace webrtc 60 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/test/fuzzers/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698