diff -r f0fb58d45f96 media-source/media-source-respec.html
--- a/media-source/media-source-respec.html Tue Mar 12 11:43:03 2013 -0700
+++ b/media-source/media-source-respec.html Wed Mar 13 14:00:48 2013 -0700
@@ -1,4 +1,4 @@
-
+
@@ -966,7 +966,7 @@
- Loop Top: If the is empty, then jump to the need more data step below.
- - If the starts with bytes that violate the , then run the and abort this algorithm.
+ - If the starts with bytes that violate the , then call and abort this algorithm.
- Remove any bytes that the say should be ignored from the start of the .
-
If the equals , then run the following steps:
@@ -989,7 +989,7 @@
-
If the equals , then run the following steps:
- - If the is false, then run the and abort this algorithm.
+ - If the is false, then call and abort this algorithm.
-
If the does not contain a complete header yet, then jump to the need more data step below.
Implementations may choose to implement this state as an incremental parser so that it is not necessary to have the entire media segment before running the .
@@ -1059,7 +1059,7 @@
- Read all available bytes in stream into data.
- - If an error occured while reading from stream, then run the and abort this algorithm.
+ - If an error occured while reading from stream, then call and abort this algorithm.
- Run the .
-
If the equals true, then run the and abort this algorithm.
diff -r f0fb58d45f96 media-source/media-source.js
--- a/media-source/media-source.js Tue Mar 12 11:43:03 2013 -0700
+++ b/media-source/media-source.js Wed Mar 13 14:00:48 2013 -0700
@@ -72,7 +72,8 @@
'addSourceBuffer': { func: idlref_helper, fragment: 'widl-MediaSource-addSourceBuffer-SourceBuffer-DOMString-type', link_text: 'addSourceBuffer()', },
'endOfStream': { func: idlref_helper, fragment: 'widl-MediaSource-endOfStream-void-EndOfStreamError-error', link_text: 'endOfStream()', },
'eos-decode': { func: idlref_helper, fragment: 'widl-MediaSource-endOfStream-void-EndOfStreamError-error', link_text: 'endOfStream("decode")', },
- 'readyState': { func: idlref_helper, fragment: 'widl-MediaSource-readyState', link_text: 'readyState', },
+ 'eos-network': { func: idlref_helper, fragment: 'widl-MediaSource-endOfStream-void-EndOfStreamError-error', link_text: 'endOfStream("network")', },
+ 'readyState': { func: idlref_helper, fragment: 'widl-MediaSource-readyState', link_text: 'readyState', },
'duration': { func: idlref_helper, fragment: 'widl-MediaSource-duration', link_text: 'duration', },
'appendBuffer': { func: idlref_helper, fragment: 'widl-SourceBuffer-appendBuffer-void-ArrayBufferView-data', link_text: 'appendBuffer()', },
'appendStream': { func: idlref_helper, fragment: 'widl-SourceBuffer-appendStream-void-Stream-stream-unsigned-long-long-maxSize', link_text: 'appendStream()', },