1. 27 Feb, 2013 1 commit
  2. 24 Feb, 2013 2 commits
  3. 22 Feb, 2013 2 commits
  4. 20 Feb, 2013 2 commits
  5. 17 Feb, 2013 1 commit
  6. 15 Feb, 2013 1 commit
  7. 14 Feb, 2013 1 commit
  8. 13 Feb, 2013 1 commit
  9. 07 Feb, 2013 1 commit
    • Michael Niedermayer's avatar
      vc1dec: Fix destination pointers in context for fields · 0d194ee5
      Michael Niedermayer authored
      This replaces a large number of checks for the second field by
      fixing the pointers when they are setup
      
      This should also fix I/BI field pictures
      
      Changes checksums for vc1_sa10143, the file becomes slightly closer
      to what the reference decoder outputs
      
      Based on "vc1dec: the second field is written wrong to the picture"
               by Sebastian Sandberg <sebastiand.sandberg@gmail.com>
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      0d194ee5
  10. 06 Feb, 2013 8 commits
  11. 24 Jan, 2013 1 commit
  12. 20 Jan, 2013 1 commit
  13. 17 Jan, 2013 1 commit
  14. 15 Jan, 2013 2 commits
  15. 12 Jan, 2013 1 commit
  16. 11 Jan, 2013 2 commits
  17. 10 Jan, 2013 1 commit
  18. 09 Jan, 2013 1 commit
    • Justin Ruggles's avatar
      idcin: better error handling · 5d045046
      Justin Ruggles authored
      Add some additional checks for EOF and print error messages on an incomplete
      header or packet.
      
      FATE reference updated for id-cin-video due to the demuxer no longer
      returning a partial video packet at EOF.
      5d045046
  19. 08 Jan, 2013 1 commit
  20. 03 Jan, 2013 2 commits
    • Clément Bœsch's avatar
      lavf/webvtt: use ff_subtitles_read_chunk(). · dc8b3674
      Clément Bœsch authored
      The FATE test is updated because the line breaks in the dialogue
      rectangles are now proper CRLF.
      dc8b3674
    • Clément Bœsch's avatar
      subviewer: sanitize packets. · 3fa642d6
      Clément Bœsch authored
      The data does not contain timing or trailing line breaks anymore. In
      addition to being less idiotic, it is consistent with other codecs and
      thus allows more switches between formats and codecs. It also fixes the
      issue of the trailing line returns being simple \n instead of CRLF in
      the ASS rectangle dialogue (this is the reason of the FATE update).
      3fa642d6
  21. 02 Jan, 2013 3 commits
  22. 01 Jan, 2013 2 commits
  23. 30 Dec, 2012 2 commits
    • Clément Bœsch's avatar
      microdvd: sanitize AVPackets. · 1f265f52
      Clément Bœsch authored
      Current MicroDVD AVPackets contain timing information and trailing line
      breaks. The data is now only composed of the markup data. Doing this
      consistently between text subtitles decoders allows to use different
      codec for various formats. For instance, MicroDVD markup is sometimes
      found in some VPlayer files. Also, generally speaking, the subtitles
      text decoders have no use of these timings (and they must not use them
      since it would break any user timing adjustment).
      
      Technically, this is a major ABI break. In practice, a mismatching
      lavf/lavc will now error out for MicroDVD decoding. Supporting both
      formats requires unnecessary complex and fragile code.
      
      FATE needs update because line breaks in the ASS file were "\n" (because
      that's what is used in the original file). ASS format expect "\r\n" line
      breaks; this commit fixes this issue. Also note that this "\r\n"
      trailing need to be moved at some point from the decoders to the ASS
      muxer.
      1f265f52
    • Clément Bœsch's avatar
      faa94061