1. 26 3月, 2013 1 次提交
  2. 13 3月, 2013 1 次提交
  3. 27 2月, 2013 2 次提交
  4. 26 2月, 2013 1 次提交
  5. 27 1月, 2013 1 次提交
  6. 23 1月, 2013 1 次提交
  7. 01 11月, 2012 1 次提交
  8. 08 10月, 2012 1 次提交
  9. 31 8月, 2012 1 次提交
  10. 16 8月, 2012 1 次提交
  11. 09 8月, 2012 1 次提交
  12. 04 8月, 2012 1 次提交
    • D
      x86: build: replace mmx2 by mmxext · 239fdf1b
      Diego Biurrun 提交于
      Refactoring mmx2/mmxext YASM code with cpuflags will force renames.
      So switching to a consistent naming scheme beforehand is sensible.
      The name "mmxext" is more official and widespread and also the name
      of the CPU flag, as reported e.g. by the Linux kernel.
      239fdf1b
  13. 30 6月, 2012 1 次提交
    • M
      x86: vc1: fix and enable optimised loop filter · f2fd1678
      Mans Rullgard 提交于
      The problem is that the ssse3 psign instruction does the wrong
      thing here.  Commit ea60dfe2 incorrectly removed a macro emulating
      this instruction for pre-ssse3 code.  However, the emulation is
      incorrect, and the code relies on the behaviour of the macro.
      Specifically, the psign sets destination elements to zero where
      the corresponding source element is zero, whereas the emulation
      only negates destination elements where the source is negative.
      
      Furthermore, the PSIGNW_MMX macro in x86util.asm is totally bogus,
      which is why the original VC-1 code had an additional right shift
      when using it.  Since the psign instruction cannot be used here,
      skip all the macro hell and use the working instruction sequence
      directly.
      
      None of this was noticed due a stray return statement in
      ff_vc1dsp_init_mmx() which meant that only the mmx version of the
      loop filter was ever used (before being removed in ea60dfe2).
      Signed-off-by: NMans Rullgard <mans@mansr.com>
      f2fd1678
  14. 25 6月, 2012 1 次提交
  15. 12 5月, 2012 1 次提交
  16. 18 2月, 2011 1 次提交
  17. 19 1月, 2011 1 次提交
  18. 08 9月, 2010 1 次提交
  19. 04 9月, 2010 1 次提交
  20. 25 8月, 2010 1 次提交
  21. 21 7月, 2010 2 次提交
  22. 12 7月, 2010 1 次提交
  23. 30 6月, 2010 1 次提交
  24. 07 3月, 2010 1 次提交
  25. 06 3月, 2010 1 次提交
  26. 22 1月, 2010 1 次提交
  27. 16 6月, 2009 1 次提交
  28. 15 4月, 2009 1 次提交
  29. 22 12月, 2008 1 次提交
  30. 16 10月, 2008 1 次提交
    • D
      Convert asm keyword into __asm__. · be449fca
      Diego Pettenò 提交于
      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
  31. 05 10月, 2008 1 次提交
  32. 09 5月, 2008 2 次提交
  33. 03 1月, 2008 1 次提交
    • C
      Fix issue #301: · ae904fd0
      Christophe Gisquet 提交于
      summary of changes:
      - Use MANGLE when loading some constants into MMX registers.
      - Convert those constants to non-static and thus add ff_ prefix.
      - Remove last parameter of MSPEL_FILTER13_CORE (was constant).
      - Use of "+r" instead of stricter but unnecessary "+g".
      - Use of REG_c and direct loading of some of the above.
      patch by Christophe GISQUET, christophe.gisquet free fr
      Subject: [FFmpeg-devel] [PATCH] Roundup issue #301
      Date: Fri, 28 Dec 2007 19:22:18 +0100
      
      Originally committed as revision 11376 to svn://svn.ffmpeg.org/ffmpeg/trunk
      ae904fd0
  34. 16 12月, 2007 1 次提交
  35. 28 11月, 2007 2 次提交
  36. 25 11月, 2007 1 次提交