1. 17 May, 2013 1 commit
    • Michael Kostylev's avatar
      sparc: VIS mnemonics · 2768f7e4
      Michael Kostylev authored
      Currently, if VIS is enabled by configure, it will also be enabled at
      run-time regardless of its support in the hardware. Thus, masking VIS
      usage as it is done in vis.h by constructing binary instructions is
      pointless. Using normal VIS mnemonics in inline assembly allows to take
      advantage of automatic register allocation, gets rid of register
      variables, which are unsupported by suncc for SPARC, and improves code
      readability.
      Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
      2768f7e4
  2. 16 May, 2013 1 commit
  3. 19 Apr, 2013 1 commit
  4. 14 Mar, 2013 1 commit
  5. 13 Mar, 2013 1 commit
  6. 25 Feb, 2013 1 commit
  7. 15 Feb, 2013 1 commit
  8. 10 Feb, 2013 1 commit
  9. 09 Feb, 2013 1 commit
  10. 05 Feb, 2013 2 commits
  11. 23 Jan, 2013 3 commits
  12. 16 Aug, 2012 2 commits
  13. 12 Apr, 2012 1 commit
  14. 26 Mar, 2012 1 commit
  15. 15 Feb, 2012 1 commit
  16. 02 Nov, 2011 1 commit
  17. 21 Jul, 2011 1 commit
  18. 20 Jul, 2011 1 commit
  19. 21 May, 2011 1 commit
  20. 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
  21. 10 Apr, 2011 1 commit
    • Oskar Arvidsson's avatar
      Adds 8-, 9- and 10-bit versions of some of the functions used by the h264 decoder. · 8dbe5856
      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 avatarMichael Niedermayer <michaelni@gmx.at>
      8dbe5856
  22. 19 Mar, 2011 1 commit
  23. 18 Jan, 2011 1 commit
  24. 17 Jan, 2011 1 commit
  25. 18 Mar, 2010 1 commit
  26. 16 Mar, 2010 1 commit
  27. 10 Mar, 2010 2 commits
  28. 06 Mar, 2010 1 commit
  29. 22 Jan, 2010 1 commit
  30. 09 Feb, 2009 1 commit
  31. 30 Jan, 2009 1 commit
  32. 09 Dec, 2008 1 commit
  33. 03 Dec, 2008 1 commit
  34. 16 Oct, 2008 1 commit
    • Diego Pettenò's avatar
      Convert asm keyword into __asm__. · be449fca
      Diego Pettenò authored
      Neither the asm() nor the __asm__() keyword is part of the C99
      standard, but while GCC accepts the former in C89 syntax, it is not
      accepted in C99 unless GNU extensions are turned on (with -fasm). The
      latter form is accepted in any syntax as an extension (without
      requiring further command-line options).
      
      Sun Studio C99 compiler also does not accept asm() while accepting
      __asm__(), albeit reporting warnings that it's not valid C99 syntax.
      
      Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
      be449fca
  35. 31 Aug, 2008 1 commit