commit d93d0469d2b21b67869369063e17074563a49abf Author: Georg Koppen gk@torproject.org Date: Thu Jan 18 10:53:20 2018 +0000
fixup! Bug 22548: Firefox downgrades VP9 videos to VP8. --- dom/media/Benchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dom/media/Benchmark.cpp b/dom/media/Benchmark.cpp index af0f4a562da4..2c4cf1c3e368 100644 --- a/dom/media/Benchmark.cpp +++ b/dom/media/Benchmark.cpp @@ -80,7 +80,7 @@ VP9Benchmark::IsVP9DecodeFast()
uint32_t decodeFps = Preferences::GetUint(sBenchmarkFpsPref); uint32_t threshold = - Preferences::GetUint("media.benchmark.vp9.threshold", 0); + Preferences::GetUint("media.benchmark.vp9.threshold", 0U);
return decodeFps >= threshold; #endif
tor-commits@lists.torproject.org