1. 14 Nov, 2014 1 commit
  2. 13 Nov, 2014 11 commits
  3. 10 Nov, 2014 2 commits
  4. 06 Nov, 2014 7 commits
  5. 05 Nov, 2014 3 commits
  6. 04 Nov, 2014 4 commits
  7. 03 Nov, 2014 8 commits
  8. 28 Oct, 2014 4 commits
    • Neaten TsExtractor a little. · 4c146ee2
      - Add a readBit method to BitsArray for reading a boolean flag.
      - Make things accessed from inner classes package visibility to avoid
        the compiler generating thunk methods.
      Oliver Woodman committed
    • Merge pull request #100 from google/dev · d71b9b7c
      dev -> dev-l
      ojw28 committed
    • Merge pull request #99 from google/dev · b6bbf50c
      dev -> dev-hls
      ojw28 committed
    • Refactor HLS support. · 2422912b
      - The HlsSampleSource now owns the extractor. TsChunk is more or less dumb.
        The previous model was weird, because you'd end up "reading" samples from
        TsChunk objects that were actually parsed from the previous chunk (due to
        the way the extractor was shared and maintained internal queues).
      - Split out consuming and reading in the extractor.
      - Make it so we consume 5s ahead. This is a window we allow for uneven
        interleaving, whilst preventing huge read-ahead (e.g. in the case of sparse
        ID3 samples).
      - Avoid flushing the extractor for a discontinuity until it has been fully
        drained of previously parsed samples. This avoids skipping media shortly
        before discontinuities.
      - Also made start-up faster by avoiding double-loading the first segment.
      
      Issue: #3
      Oliver Woodman committed