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

Unified Diff: media/base/media_log_event.h

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: media/base/media_log_event.h
diff --git a/media/base/media_log_event.h b/media/base/media_log_event.h
index 66aa5f7826d1dcfcf7c25219c248a0632a4059d1..5f57fad659ef605ef5b15f651ecdf548d7d332bc 100644
--- a/media/base/media_log_event.h
+++ b/media/base/media_log_event.h
@@ -77,6 +77,18 @@ struct MediaLogEvent {
// "buffer_end": <last buffered byte>.
BUFFERED_EXTENTS_CHANGED,
+ // Buffered audio splice frame statistics have changed.
+ // params: "audio_splice_count": <count of splice frames buffered>
+ // "audio_splice_degenerate_count": <count of degenerate splices>
+ // A degenerate splice is any splice that was prevented from
+ // generation due to exact buffer overlap, overlap of previous
+ // splice, overlap of preroll, or overlap duration below minimum
+ // threshold.
+ // "audio_splice_duration_average": <seconds>
+ // "audio_splice_duration_min": <seconds>
+ // "audio_splice_duration_max": <seconds>
+ BUFFERED_AUDIO_SPLICE_STATISTICS_CHANGED,
xhwang 2015/07/15 00:46:50 +dalecurtis When I first looked at this list (Typ
+
// Error log reported by media code such as reasons of playback error.
MEDIA_ERROR_LOG_ENTRY,
// params: "error": Error string describing the error detected.

Powered by Google App Engine
This is Rietveld 408576698