1. 01 Oct, 2012 1 commit
  2. 20 Sep, 2012 1 commit
    • Mans Rullgard's avatar
      motion_est: fix use of inline on extern functions · a34a609f
      Mans Rullgard authored
      Inline functions declared without extern do not provide an external
      definition in standard C99.  This code only works because most
      compilers do not implement the inline semantics correctly.  With a
      stricter compiler, linking fails with unresolved references to these
      functions.
      
      Declaring the functions extern inline works correctly with some
      compilers while some others still fail to create external definitions.
      
      For maximum portability, create a static inline version with an
      externally visible wrapper for ff_get_mb_score.  ff_epzs_motion_search
      is so large that no sane compiler inlines it anyway, so there the
      inline keyword can simply be dropped with no effect.
      Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
      a34a609f
  3. 11 Oct, 2011 1 commit
  4. 17 Jul, 2011 1 commit
  5. 03 Jul, 2011 1 commit
  6. 23 Jun, 2011 1 commit
  7. 02 May, 2011 1 commit
  8. 29 Apr, 2011 1 commit
  9. 26 Apr, 2011 1 commit
  10. 19 Mar, 2011 1 commit
  11. 08 Jul, 2010 1 commit
  12. 02 Jul, 2010 1 commit
  13. 20 Apr, 2010 1 commit
  14. 02 Apr, 2010 1 commit
  15. 01 Feb, 2009 1 commit
  16. 24 Jul, 2008 1 commit
  17. 09 Jul, 2008 1 commit
  18. 09 Mar, 2008 1 commit
  19. 05 Jul, 2007 1 commit
  20. 30 May, 2007 1 commit
  21. 31 Mar, 2007 2 commits
  22. 22 Dec, 2006 1 commit
  23. 20 Dec, 2006 2 commits
  24. 12 Dec, 2006 1 commit
  25. 08 Dec, 2006 1 commit
  26. 05 Dec, 2006 2 commits
  27. 02 Dec, 2006 4 commits
  28. 01 Dec, 2006 4 commits
  29. 30 Nov, 2006 1 commit
  30. 11 Oct, 2006 1 commit
  31. 08 Oct, 2006 1 commit
    • Dominik Mierzejewski's avatar
      Fixes: · 621d9294
      Dominik Mierzejewski authored
      mpegvideo.h:777: warning: ‘inline’ is not at beginning of declaration
      motion_est_template.c:236: warning: ‘inline’ is not at beginning of declaration
      
      Approved by Diego.
      
      Originally committed as revision 6591 to svn://svn.ffmpeg.org/ffmpeg/trunk
      621d9294