Bug 1118528 - Increase fuzz threshold for mp4. r=ajones

This commit is contained in:
Matt Woodrow 2015-01-12 09:48:23 +13:00
parent 7dca2dbbd8
commit 79666d8c52

View File

@ -289,9 +289,11 @@ public:
return true;
}
// Gaps of up to 20ms (marginally longer than a single frame at 60fps) are considered
// to be sequential frames.
int64_t GetRoundingError()
{
return 1000;
return 20000;
}
private: