1. 23 Nov, 2014 1 commit
  2. 18 Jul, 2014 1 commit
  3. 18 Apr, 2014 1 commit
  4. 20 Dec, 2013 1 commit
  5. 16 Nov, 2013 1 commit
  6. 03 Oct, 2013 1 commit
  7. 12 Sep, 2013 4 commits
  8. 11 Sep, 2013 3 commits
  9. 31 Jul, 2013 1 commit
  10. 29 Jun, 2013 2 commits
  11. 16 Jun, 2013 2 commits
  12. 28 May, 2013 1 commit
  13. 27 May, 2013 1 commit
  14. 20 May, 2013 1 commit
  15. 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
  16. 08 Mar, 2013 2 commits
  17. 12 Feb, 2013 1 commit
  18. 04 Dec, 2012 2 commits
  19. 30 Nov, 2012 2 commits
  20. 25 Nov, 2012 1 commit
  21. 24 Nov, 2012 1 commit
  22. 11 Nov, 2012 2 commits
  23. 15 Oct, 2012 1 commit
  24. 14 Oct, 2012 1 commit
  25. 08 Oct, 2012 1 commit
  26. 01 Oct, 2012 1 commit
  27. 07 Aug, 2012 1 commit
  28. 01 Jul, 2012 1 commit
  29. 21 Jun, 2012 1 commit