1. 30 Apr, 2012 3 commits
  2. 22 Apr, 2012 1 commit
    • Michael Niedermayer's avatar
      lowres2 support. · 70d54392
      Michael Niedermayer authored
      The new lowres support is limited to decoders where lowres decoding
      is possible in high quality.
      I was not able to measure any speed difference, but if one is found
      the 2-3 lines that might affect speed can be made compile time conditional
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      70d54392
  3. 21 Apr, 2012 1 commit
  4. 18 Apr, 2012 1 commit
  5. 12 Apr, 2012 1 commit
  6. 09 Apr, 2012 1 commit
  7. 26 Mar, 2012 2 commits
  8. 02 Mar, 2012 1 commit
  9. 15 Feb, 2012 3 commits
  10. 09 Feb, 2012 1 commit
  11. 06 Feb, 2012 1 commit
  12. 07 Jan, 2012 1 commit
  13. 07 Dec, 2011 1 commit
  14. 21 Oct, 2011 3 commits
  15. 30 Sep, 2011 1 commit
  16. 25 Sep, 2011 2 commits
  17. 14 Aug, 2011 1 commit
  18. 27 Jul, 2011 1 commit
  19. 21 Jul, 2011 3 commits
  20. 20 Jul, 2011 1 commit
  21. 16 Jul, 2011 1 commit
  22. 05 Jul, 2011 1 commit
  23. 21 Jun, 2011 1 commit
  24. 14 Jun, 2011 1 commit
  25. 07 Jun, 2011 1 commit
  26. 19 May, 2011 2 commits
  27. 10 May, 2011 1 commit
    • Oskar Arvidsson's avatar
      Adds 8-, 9- and 10-bit versions of some of the functions used by the h264 decoder. · 19a0729b
      Oskar Arvidsson authored
      This patch lets e.g. dsputil_init chose dsp functions with respect to
      the bit depth to decode. The naming scheme of bit depth dependent
      functions is <base name>_<bit depth>[_<prefix>] (i.e. the old
      clear_blocks_c is now named clear_blocks_8_c).
      
      Note: Some of the functions for high bit depth is not dependent on the
      bit depth, but only on the pixel size. This leaves some room for
      optimizing binary size.
      
      Preparatory patch for high bit depth h264 decoding support.
      Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
      19a0729b
  28. 04 May, 2011 1 commit
  29. 12 Apr, 2011 1 commit
    • Alex Converse's avatar
      Convert some undefined 1<<31 shifts into 1U<<31. · 187a5379
      Alex Converse authored
      According to ISO 9899:1999 S 6.5.7/4:
      
      The result of E1 << E2 is E1 left-shifted E2 bit positions; vacated bits
      are filled with zeros. If E1 has an unsigned type, the value of the
      result is E1× 2^E2, reduced modulo one more than the maximum value
      representable in the result type. If E1 has a signed type and
      nonnegative value, and E1× 2^E2 is representable in the result type, then
      that is the resulting value; otherwise, the behavior is undefined.
      187a5379