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

Unified Diff: content/browser/resources/media/main.js

Issue 1236543007: MSE: Log buffered audio splice generation to media-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
Index: content/browser/resources/media/main.js
diff --git a/content/browser/resources/media/main.js b/content/browser/resources/media/main.js
index 5ca4bed7c45d0a5ce30db47e6bbec9e3274b5910..cf0453944fa6306589e99c78d59a1798daf4c002 100644
--- a/content/browser/resources/media/main.js
+++ b/content/browser/resources/media/main.js
@@ -165,7 +165,12 @@ var media = (function() {
if (key === 'buffer_start' ||
key === 'buffer_end' ||
key === 'buffer_current' ||
- key === 'is_downloading_data') {
+ key === 'is_downloading_data' ||
+ key === 'audio_splice_count' ||
wolenetz 2015/07/14 23:23:37 Likewise, this isn't a very efficient mechanism fo
DaleCurtis 2015/07/14 23:37:47 I think this is long enough that we want a global
+ key === 'audio_splice_degenerate_count' ||
+ key === 'audio_splice_duration_average' ||
+ key === 'audio_splice_duration_min' ||
+ key === 'audio_splice_duration_max') {
manager.updatePlayerInfoNoRecord(
source, event.ticksMillis, key, value);
} else {

Powered by Google App Engine
This is Rietveld 408576698