[DVQA] Increase default storage duration from 3 to 9 seconds

Bug: b/271542055, webrtc:14995, b/274620516
Change-Id: I2ef635db93d11e82e8221e2465f9f7c41449e4ec
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/298720
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#39636}
This commit is contained in:
Artem Titov 2023-03-22 11:17:30 +01:00 committed by WebRTC LUCI CQ
parent 041ecb87f5
commit 0ef84620b7

View File

@ -29,7 +29,8 @@
namespace webrtc {
// WebRTC will request a key frame after 3 seconds if no frames were received.
constexpr TimeDelta kDefaultMaxFramesStorageDuration = TimeDelta::Seconds(3);
// Uses 3x time to account for possible freezes which we still want to account.
constexpr TimeDelta kDefaultMaxFramesStorageDuration = TimeDelta::Seconds(9);
class SamplesRateCounter {
public: