Index: webrtc/modules/video_coding/codec_timer.h |
diff --git a/webrtc/modules/video_coding/codec_timer.h b/webrtc/modules/video_coding/codec_timer.h |
index 90ef6bb5e54b254d62f524a5809ddae581f2c5f7..1fabeb246c1bb1eca27798ca42c35087a6259aab 100644 |
--- a/webrtc/modules/video_coding/codec_timer.h |
+++ b/webrtc/modules/video_coding/codec_timer.h |
@@ -13,8 +13,8 @@ |
#include <queue> |
+#include "webrtc/base/analytics/percentile_filter.h" |
#include "webrtc/modules/include/module_common_types.h" |
-#include "webrtc/modules/video_coding/percentile_filter.h" |
#include "webrtc/typedefs.h" |
namespace webrtc { |
@@ -43,7 +43,7 @@ class VCMCodecTimer { |
std::queue<Sample> history_; |
// |filter_| contains the same values as |history_|, but in a data structure |
// that allows efficient retrieval of the percentile value. |
- PercentileFilter filter_; |
+ PercentileFilter<int64_t> filter_; |
}; |
} // namespace webrtc |