diff --git a/modules/video_coding/jitter_estimator.cc b/modules/video_coding/jitter_estimator.cc index 55efdf83f6..7f54aad808 100644 --- a/modules/video_coding/jitter_estimator.cc +++ b/modules/video_coding/jitter_estimator.cc @@ -416,7 +416,7 @@ int VCMJitterEstimator::GetJitterEstimate( } double VCMJitterEstimator::GetFrameRate() const { - if (fps_counter_.ComputeMean() == 0.0) + if (fps_counter_.ComputeMean() <= 0.0) return 0; double fps = 1000000.0 / fps_counter_.ComputeMean();