1. 08 Mar, 2013 1 commit
  2. 05 Mar, 2013 3 commits
  3. 04 Mar, 2013 1 commit
  4. 27 Feb, 2013 1 commit
  5. 25 Feb, 2013 1 commit
  6. 24 Feb, 2013 2 commits
  7. 22 Feb, 2013 2 commits
  8. 20 Feb, 2013 2 commits
  9. 18 Feb, 2013 1 commit
  10. 17 Feb, 2013 1 commit
  11. 15 Feb, 2013 1 commit
  12. 14 Feb, 2013 3 commits
  13. 13 Feb, 2013 1 commit
  14. 11 Feb, 2013 1 commit
    • Martin Storsjö's avatar
      swscale: Disallow conversion to GBRP16 · d192ac3e
      Martin Storsjö authored
      This reverts parts of d6d5ef55, that didn't work right. (The
      tests that were added failed on big endian, and the output looked
      garbled on little endian as well.)
      
      This is due to the fact that the intermediate scaling values (from
      e.g. hScale8To19_c or hScale16To19_c) are stored as int32_t and
      thus requires a separate output function, while yuv2gbrp_full_X_c
      only interprets it as int16_t.
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      d192ac3e
  15. 10 Feb, 2013 1 commit
  16. 09 Feb, 2013 1 commit
  17. 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
  18. 06 Feb, 2013 8 commits
  19. 27 Jan, 2013 1 commit
  20. 26 Jan, 2013 5 commits
  21. 24 Jan, 2013 1 commit
  22. 21 Jan, 2013 1 commit
    • Ronald S. Bultje's avatar
      wmv2: move IDCT to its own DSP context. · e6bc38fd
      Ronald S. Bultje authored
      This allows us to remove FF_IDCT_WMV2, which serves no practical purpose
      other than to be able to select the WMV2 IDCT for MPEG (or vice versa)
      and get corrupt output.
      
      Fate tests for all wmv2-related tests change, because (for some obscure
      reason) they forced use of the MPEG IDCT. You would get the same changes
      previously by not using -idct simple in the fate test (or replacing it
      with -idct auto).
      e6bc38fd