Adjust max number of samples that can be stored for a histogram (2000->300).

Consider follow up and use actual bucket count when storing samples.

BUG=

Review-Url: https://codereview.webrtc.org/2008483002
Cr-Commit-Position: refs/heads/master@{#12872}
This commit is contained in:
asapersson 2016-05-24 06:03:38 -07:00 committed by Commit bot
parent 58530ed246
commit 7d56997894

View File

@ -24,7 +24,7 @@ namespace {
// Limit for the maximum number of sample values that can be stored.
// TODO(asapersson): Consider using bucket count (and set up
// linearly/exponentially spaced buckets) if samples are logged more frequently.
const int kMaxSampleMapSize = 2000;
const int kMaxSampleMapSize = 300;
class RtcHistogram {
public: