Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1288)

Unified Diff: content/test/data/media/webrtc_test_utilities.js

Issue 1132333006: Try switching black frame algorithm to a luma-based algorithm. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing threshold for first pixel after offline discussion. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/media/webrtc_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/media/webrtc_test_utilities.js
diff --git a/content/test/data/media/webrtc_test_utilities.js b/content/test/data/media/webrtc_test_utilities.js
index 5fd38113882b7c6bf7f9db219850291da9e4d2c6..f8b320966d91b92db5d33193af3c2cf2d76cea23 100644
--- a/content/test/data/media/webrtc_test_utilities.js
+++ b/content/test/data/media/webrtc_test_utilities.js
@@ -66,9 +66,14 @@ function detectVideo(videoElementName, predicate, callback) {
var width = VIDEO_TAG_WIDTH;
var height = VIDEO_TAG_HEIGHT;
var videoElement = $(videoElementName);
- var canvas = $(videoElementName + '-canvas');
var oldPixels = [];
+ var startTimeMs = new Date().getTime();
var waitVideo = setInterval(function() {
+ var canvas = $(videoElementName + '-canvas');
+ if (canvas == null) {
+ console.log('Waiting for ' + videoElementName + '-canvas' + ' to appear');
+ return;
+ }
var context = canvas.getContext('2d');
context.drawImage(videoElement, 0, 0, width, height);
var pixels = context.getImageData(0, 0 , width, height / 3).data;
@@ -82,6 +87,11 @@ function detectVideo(videoElementName, predicate, callback) {
callback(videoElement.videoWidth, videoElement.videoHeight);
}
oldPixels = pixels;
+ var elapsedTime = new Date().getTime() - startTimeMs;
+ if (elapsedTime > 3000) {
+ startTimeMs = new Date().getTime();
+ console.log('Still waiting for video to satisfy ' + predicate.toString());
+ }
}, 200);
}
@@ -186,18 +196,26 @@ function isVideoPlaying(pixels, previousPixels) {
return false;
}
+// Checks if the frame is black. |pixels| is in RGBA (i.e. pixels[0] is the R
+// value for the first pixel).
function isVideoBlack(pixels) {
- for (var i = 0; i < pixels.length; i++) {
- // |pixels| is in RGBA. Ignore the alpha channel.
- // We allow it to be off by 1, to account for rounding errors in YUV
- // conversion.
- if (pixels[i] != 0 && pixels[i] != 1 && (i + 1) % 4 != 0) {
+ var threshold = 20;
+ var accumulatedLuma = 0;
+ for (var i = 0; i < pixels.length; i += 4) {
+ // Ignore the alpha channel.
+ accumulatedLuma += rec702Luma_(pixels[i], pixels[i + 1], pixels[i + 2]);
+ if (accumulatedLuma > threshold * (i / 4 + 1))
return false;
- }
}
return true;
}
+// Use Luma as in Rec. 709: Y′709 = 0.2126R + 0.7152G + 0.0722B;
+// See http://en.wikipedia.org/wiki/Rec._709.
+function rec702Luma_(r, g, b) {
+ return 0.2126 * r + 0.7152 * g + 0.0722 * b;
+}
+
// This function matches |left| and |right| and fails the test if the
// values don't match using normal javascript equality (i.e. the hard
// types of the operands aren't checked).
« no previous file with comments | « content/browser/media/webrtc_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698