1. 26 2月, 2011 3 次提交
  2. 20 2月, 2011 1 次提交
  3. 15 2月, 2011 1 次提交
    • R
      Merge libavcore into libavutil · 737eb597
      Reinhard Tartler 提交于
      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: NReinhard Tartler <siretart@tauware.de>
      737eb597
  4. 14 2月, 2011 3 次提交
  5. 12 2月, 2011 1 次提交
  6. 09 2月, 2011 1 次提交
  7. 07 2月, 2011 1 次提交
  8. 30 1月, 2011 1 次提交
  9. 26 1月, 2011 2 次提交
  10. 25 1月, 2011 1 次提交
  11. 24 1月, 2011 2 次提交
  12. 22 1月, 2011 4 次提交
  13. 21 1月, 2011 1 次提交
  14. 19 1月, 2011 7 次提交
  15. 18 1月, 2011 1 次提交
  16. 05 1月, 2011 1 次提交
  17. 04 1月, 2011 2 次提交
  18. 03 1月, 2011 2 次提交
  19. 28 12月, 2010 1 次提交
  20. 24 12月, 2010 1 次提交
  21. 22 12月, 2010 1 次提交
  22. 18 12月, 2010 1 次提交
  23. 16 12月, 2010 1 次提交
    • M
      configure: Avoid warnings if av_always_inline is disabled · 4f7d2fe2
      Martin Storsjö 提交于
      This macro is disabled if --enable-small or --disable-optimizations are set.
      Currently, this leads to warnings about functions being defined but not used,
      for functions in header files.
      
      By defining av_always_inline as inline or as av_unused, we avoid these
      warnings.
      
      This doesn't make a normal build with --enable-small any larger,
      since the compiler probably chooses not to inline these functions even
      if they're marked as inline.
      
      Originally committed as revision 26032 to svn://svn.ffmpeg.org/ffmpeg/trunk
      4f7d2fe2