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

Unified Diff: Source/modules/mediasource/SourceBuffer.idl

Issue 14876007: Add Blink side support for SourceBuffer.appendWindowStart & SourceBuffer.appendWindowEnd. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 7 years, 4 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: Source/modules/mediasource/SourceBuffer.idl
diff --git a/Source/modules/mediasource/SourceBuffer.idl b/Source/modules/mediasource/SourceBuffer.idl
index 2bad546919ff120470f0a74db96bdaf34f0c4ece..f254f032367312d103e8f99361467d52919bdb78 100644
--- a/Source/modules/mediasource/SourceBuffer.idl
+++ b/Source/modules/mediasource/SourceBuffer.idl
@@ -42,6 +42,12 @@
// Applies an offset to media segment timestamps.
[SetterRaisesException] attribute double timestampOffset;
+ // Presentation timestamp for the start of append window.
+ [SetterRaisesException] attribute double appendWindowStart;
+
+ // Presentation timestamp for the end of append window.
+ [SetterRaisesException] attribute double appendWindowEnd;
+
// Append segment data.
[RaisesException] void appendBuffer(ArrayBuffer data);
[RaisesException] void appendBuffer(ArrayBufferView data);

Powered by Google App Engine
This is Rietveld 408576698