1. 31 Mar, 2014 6 commits
  2. 06 Jan, 2014 1 commit
  3. 31 Oct, 2013 1 commit
  4. 23 Oct, 2013 1 commit
  5. 03 Oct, 2013 1 commit
  6. 26 Aug, 2013 1 commit
  7. 27 Jul, 2013 3 commits
  8. 13 Mar, 2013 1 commit
    • Clément Bœsch's avatar
      lavc: factorize ff_{thread_,re,}get_buffer error messages. · 1ec94b0f
      Clément Bœsch authored
      Coccinelle profile used:
      
        @@
        expression r, ctx, f, loglevel, str, flags;
        @@
      
        -if ((r = ff_get_buffer(ctx, f, flags)) < 0) {
        -    av_log(ctx, loglevel, str);
        -    return r;
        -}
        +if ((r = ff_get_buffer(ctx, f, flags)) < 0)
        +    return r;
      
        @@
        expression r, ctx, f, loglevel, str;
        @@
      
        -if ((r = ff_reget_buffer(ctx, f)) < 0) {
        -    av_log(ctx, loglevel, str);
        -    return r;
        -}
        +if ((r = ff_reget_buffer(ctx, f)) < 0)
        +    return r;
      
        @@
        expression r, ctx, f, loglevel, str, flags;
        @@
      
        -if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) {
        -    av_log(ctx, loglevel, str);
        -    return r;
        -}
        +if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0)
        +    return r;
      
      ...along with some manual patches for the remaining ones.
      1ec94b0f
  9. 08 Mar, 2013 1 commit
  10. 01 Mar, 2013 1 commit
  11. 04 Dec, 2012 2 commits
  12. 29 Oct, 2012 2 commits
  13. 08 Oct, 2012 1 commit
  14. 12 Aug, 2012 2 commits
  15. 07 Aug, 2012 1 commit
  16. 08 Jul, 2012 3 commits
  17. 06 Apr, 2012 1 commit
  18. 28 Jan, 2012 1 commit
  19. 14 Jan, 2012 2 commits
  20. 09 Jan, 2012 1 commit
  21. 08 Jan, 2012 1 commit
  22. 29 Jul, 2011 1 commit
  23. 02 May, 2011 2 commits
  24. 19 Mar, 2011 1 commit
  25. 16 Feb, 2011 1 commit
  26. 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