1. 25 9月, 2015 6 次提交
  2. 24 9月, 2015 8 次提交
  3. 23 9月, 2015 13 次提交
  4. 22 9月, 2015 10 次提交
  5. 21 9月, 2015 3 次提交
    • W
      avcodec/dvdsubdec: fix indentation · 4ed5a73a
      wm4 提交于
      4ed5a73a
    • W
      avformat/assdec: do not drop duplicate subtitles · 265d2a73
      wm4 提交于
      Duplicates are perfectly legitimate with this format. A correct
      renderer will typically show them stacked.
      265d2a73
    • W
      avformat/vobsub: do not attempt to check duplicate subtitles · 5c93e57f
      wm4 提交于
      Some .idx files actually contain duplicate subtitle events:
      
      timestamp: 00:07:52:600, filepos: 00004e800
      timestamp: 00:07:52:600, filepos: 00004f800
      
      The second will be dropped, because it has same pts, duration, and text
      (the text is just a dummy empty string; the real data is retrieved when
      actually reading vobsub subtitle packets).
      
      Dropping this is probably not intended/safe, so avoid it.
      
      See trac issue #4872 for a sample. This patch doesn't fix decoding of
      the sample, though.
      5c93e57f