1. 15 Apr, 2014 1 commit
  2. 11 Apr, 2014 1 commit
  3. 08 Apr, 2014 1 commit
  4. 07 Apr, 2014 7 commits
  5. 03 Apr, 2014 1 commit
  6. 22 Mar, 2014 2 commits
  7. 21 Mar, 2014 1 commit
  8. 18 Mar, 2014 1 commit
  9. 14 Mar, 2014 5 commits
  10. 12 Mar, 2014 4 commits
  11. 11 Mar, 2014 1 commit
  12. 10 Mar, 2014 1 commit
  13. 09 Mar, 2014 3 commits
  14. 07 Mar, 2014 1 commit
  15. 04 Mar, 2014 1 commit
  16. 02 Mar, 2014 1 commit
    • When debugging transmux issues, it can be handy to be able to easily compare the result of the javascript segment parser with the working output from a tool like ffmpeg. Put together a test page to display the hex dump of segment-parser output side-by-side with a working example. Fixed the hex dump utility to produce more than one line of output per tag.
      David LaPalomento committed
  17. 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
  18. 28 Feb, 2014 1 commit
  19. 27 Feb, 2014 1 commit
  20. 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
  21. 25 Feb, 2014 1 commit
  22. 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
  23. 13 Feb, 2014 1 commit
  24. 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