Index: webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
index 1ae24af965e0db4bf0069ff70d915f15748ecb77..c5a16a68b8935ad9378becf041a7d4832107252a 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
+++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
@@ -250,7 +250,9 @@ class RateCounterFilter : public PacketProcessor { |
Stats<double> packets_per_second_stats_; |
Stats<double> kbps_stats_; |
int64_t start_plotting_time_ms_; |
- int flow_id_; |
+#if BWE_TEST_LOGGING_COMPILE_TIME_ENABLE |
+ int flow_id_ = 0; |
+#endif |
pthatcher1
2017/02/10 23:44:17
I don't understand why BWE_TEST_LOGGING_COMPILE_TI
kwiberg-webrtc
2017/02/11 21:30:06
I think it is because this variable is only used b
nisse-webrtc
2017/02/13 12:05:51
You're right. Without these #ifdefs, I get warning
|
std::string name_; |
// Algorithm name if single flow, Total link utilization if all flows. |
std::string algorithm_name_; |