| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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/modules/remote_bitrate_estimator/tools/bwe_rtp.h" | 11 #include "webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.h" |
| 12 | 12 |
| 13 #include <stdio.h> |
| 14 |
| 15 #include <set> |
| 13 #include <sstream> | 16 #include <sstream> |
| 14 #include <stdio.h> | |
| 15 #include <string> | 17 #include <string> |
| 16 | 18 |
| 17 #include "gflags/gflags.h" | 19 #include "gflags/gflags.h" |
| 18 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s
end_time.h" | 20 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s
end_time.h" |
| 19 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_singl
e_stream.h" | 21 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_singl
e_stream.h" |
| 20 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 22 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
| 21 #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" | 23 #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" |
| 22 #include "webrtc/test/rtp_file_reader.h" | 24 #include "webrtc/test/rtp_file_reader.h" |
| 23 | 25 |
| 24 namespace flags { | 26 namespace flags { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 new webrtc::RemoteBitrateEstimatorSingleStream(observer, clock); | 126 new webrtc::RemoteBitrateEstimatorSingleStream(observer, clock); |
| 125 *estimator_used = "RemoteBitrateEstimator"; | 127 *estimator_used = "RemoteBitrateEstimator"; |
| 126 break; | 128 break; |
| 127 } | 129 } |
| 128 default: | 130 default: |
| 129 assert(false); | 131 assert(false); |
| 130 } | 132 } |
| 131 } | 133 } |
| 132 return true; | 134 return true; |
| 133 } | 135 } |
| OLD | NEW |