1. 06 Jul, 2018 18 commits
  2. 03 Jul, 2018 14 commits
  3. 29 Jun, 2018 4 commits
  4. 28 Jun, 2018 4 commits
    • Cleanup · 94784249
      Oliver Woodman committed
    • Merge pull request #4411 from Comcast/bugfix/caption_background_fix · b06a38b6
      Fix system caption style background being used when cue style is provided.
      ojw28 committed
    • Merge pull request #4441 from murdly/dev-v2 · 7d489a88
      opt out of using DummySurface on specific Fire TV device
      ojw28 committed
    • Do not discard TS PES payload readers on Seek for TSExtractor in non-HLS mode. · 4f57c465
      Currently, we are discarding all TS PES payload readers on seek. This is to fix
      a bug that makes PES stream readers read packets inconsistently after seeking (first
      time, the readers ignore all packets before PMT, second seek time after PMT is
      read, the readers will read all packets before PMT).
      This works fine if we don't support seeking to arbitrary position within the TS
      stream. However, this may lead to a problem if we want to support seeking, because
      some TS streams only have track format at the begining of the stream, and reseting
      the payload readers after seeking can lead to track format not available anymore.
      
      This change reverts the original fix (do not discard TS PES payload readers on seek
      anymore). Instead, in non-HLS mode, after we have processed all PMTs packets in
      the strea, we will re-seek to the beginning and perform readin again to make sure
      the result will be consistent across multiple seeks. This is a prepare step to
      support seeking in TS streams.
      
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=202466233
      hoangtc committed