Chromium Code Reviews| 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. |