1. 07 May, 2012 1 commit
  2. 20 Apr, 2012 1 commit
  3. 12 Apr, 2012 1 commit
  4. 26 Mar, 2012 3 commits
  5. 21 Mar, 2012 1 commit
  6. 12 Mar, 2012 1 commit
    • Janne Grunau's avatar
      remove iwmmxt optimizations · 363bd1c6
      Janne Grunau authored
      The were broken since August of 2010 without anyone noticing until
      three weeks ago. Nobody cares about it anymore and hopefully Marvell
      will support NEON like in the PXA978 from now on.
      363bd1c6
  7. 23 Feb, 2012 1 commit
  8. 09 Feb, 2012 2 commits
  9. 02 Feb, 2012 1 commit
  10. 30 Jan, 2012 1 commit
  11. 26 Jan, 2012 1 commit
  12. 17 Jan, 2012 1 commit
    • Stefano Sabatini's avatar
      tools: add ffeval tool · 24860a91
      Stefano Sabatini authored
      The tool is useful for testing the internal arithmetic evaluation engine
      (indeed I plan to use it in FATE), and provides a handy calculator when
      you can't rely on bc ;-).
      24860a91
  13. 13 Dec, 2011 1 commit
  14. 26 Aug, 2011 1 commit
  15. 07 Jul, 2011 1 commit
  16. 29 Jun, 2011 1 commit
  17. 28 Jun, 2011 1 commit
  18. 26 Jun, 2011 1 commit
  19. 25 Jun, 2011 1 commit
  20. 08 Jun, 2011 1 commit
  21. 05 Jun, 2011 1 commit
  22. 11 May, 2011 1 commit
    • Diego Biurrun's avatar
      Remove unused softfloat implementation. · bea70575
      Diego Biurrun authored
      The softfloat functionality is unused, not installed and incomplete.
      On platforms without floating point units, the compiler provides a softfloat
      implementation so there is no point in carrying this code around locally.
      bea70575
  23. 19 Apr, 2011 1 commit
  24. 14 Apr, 2011 1 commit
  25. 07 Apr, 2011 1 commit
  26. 16 Feb, 2011 1 commit
  27. 15 Feb, 2011 1 commit
    • Reinhard Tartler's avatar
      Merge libavcore into libavutil · 737eb597
      Reinhard Tartler authored
      It is pretty hopeless that other considerable projects will adopt
      libavutil alone in other projects. Projects that need small footprint
      are better off with more specialized libraries such as gnulib or rather
      just copy the necessary parts that they need. With this in mind, nobody
      is helped by having libavutil and libavcore split. In order to ease
      maintenance inside and around FFmpeg and to reduce confusion where to
      put common code, avcore's functionality is merged (back) to avutil.
      Signed-off-by: 's avatarReinhard Tartler <siretart@tauware.de>
      737eb597
  28. 22 Dec, 2010 1 commit
  29. 08 Oct, 2010 1 commit
  30. 01 Oct, 2010 1 commit
  31. 30 Sep, 2010 1 commit
  32. 26 Sep, 2010 1 commit
  33. 09 Sep, 2010 1 commit
  34. 08 Sep, 2010 1 commit
  35. 04 Sep, 2010 1 commit
  36. 21 Jul, 2010 1 commit
    • Diego Pettenò's avatar
      Make ff_inverse stay with libavutil, and optional copy it to libavcodec. · 3fc548df
      Diego Pettenò authored
      The ff_inverse table is used by FASTDIV macro, defined in libavutil, but up
      to now the table was defined only in libavcodec.
      
      After this change, the main copy of ff_inverse is part of libavutil (just
      like FASTDIV), but if CONFIG_SMALL is unset, then a different copy is made
      available to libavcodec, to avoid the performance penalty of using an
      external look up table.
      
      Dynamic linking works, because the libraries are linked with -Bsymbolic, so
      the local copy of the symbol has priority over the external; static linking
      works because the table is on a standalone object file in both libraries,
      so the linker is able to discard one of the two.
      
      Tested on Linux/x86-64 and Mac OS X/x86-64.
      
      Originally committed as revision 24383 to svn://svn.ffmpeg.org/ffmpeg/trunk
      3fc548df
  37. 10 Jul, 2010 1 commit