1. 17 Mar, 2014 2 commits
  2. 14 Mar, 2014 5 commits
  3. 07 Mar, 2014 1 commit
  4. 04 Mar, 2014 1 commit
  5. 01 Mar, 2014 1 commit
    • The original test was invoking the playlist reload callback which tested whether the media index was updating correctly after a refresh. Now, the test correctly triggers the a variant switch after downloading a segment. Consolidated media index update code and ensured state is properly updated after a switch.
      David LaPalomento committed
  6. 28 Feb, 2014 1 commit
  7. 27 Feb, 2014 1 commit
  8. 26 Feb, 2014 1 commit
    • When a media playlist was loaded directly, the URI wasn't being set on the implicit master playlist created by the plugin. That meant that playlist reloads weren't being correctly associated with the old playlist version and merges weren't happening. Now, live media playlists loaded directly should be updated properly after being refreshed and segment URLs are resolved directly against the media playlists when the master playlist is only inferred.
      David LaPalomento committed
  9. 25 Feb, 2014 1 commit
    • Modify the parser to include an attribute when the endlist tag shows up in a media playlist. Update test playlist parses to add the attribute where appropriate. Trigger a playlist reload and merge if endlist isn't present in the parse. Clean up some formatting.
      David LaPalomento committed
  10. 23 Feb, 2014 1 commit
    • When an ENDLIST tag is not present, media playlists should be continually re-requested to check for updates. The updated versions of the playlist must be reconciled with the client's metadata to continue playback. Added a single function to manage this process for media playlists with and without media sequence information, using URIs and byterange information to match segments.
      Removed parser code that defaulted the playlist type to VOD if no type was specified. The spec allows live streams to omit the playlist type if the server intends to remove segments from the playlist. None of the runtime code actually referenced playlist type so it may have been a bit premature to parse it at all.
      David LaPalomento committed
  11. 19 Feb, 2014 1 commit
  12. 13 Feb, 2014 4 commits
  13. 12 Feb, 2014 1 commit
    • Pushing an entire segment worth of FLV tags into the source buffer at once caused noticeable delays with high-bitrate segments. Instead, wrap each call to appendBuffer in a setTimeout of zero so that the browser has a chance to render frames while the segment is being transferred to the SWF. Make sure that appends-in-progress are cleared if a seek is initiated.
      David LaPalomento committed
  14. 10 Feb, 2014 5 commits
  15. 09 Feb, 2014 2 commits
  16. 06 Feb, 2014 1 commit
  17. 05 Feb, 2014 2 commits
  18. 04 Feb, 2014 2 commits
  19. 31 Jan, 2014 2 commits
  20. 29 Jan, 2014 3 commits
  21. 28 Jan, 2014 2 commits
    • The plugin doesn't work in IE8 or 9, so be more clear about that.
      David LaPalomento committed
    • Fixes #110. Fixes #116. If timeupdates were being firing without a media playlist available yet, fillBuffer would dereference a property on undefined and blow up. Timeupdates occur manually on a fixed interval when using the Flash tech so this was guaranteed to happen whenever the media playlist was unretrievable. To avoid this, wait to register buffer checks until a media playlist has been successfully downloaded. As it turns out, this is the same moment we normally trigger loadedmetadata so it was possible to transform a loadedmetadata handler into a direct call to fillBuffer.
      David LaPalomento committed