1. 29 Sep, 2013 1 commit
  2. 28 Sep, 2013 1 commit
  3. 29 Aug, 2013 3 commits
  4. 28 Aug, 2013 1 commit
  5. 09 May, 2013 1 commit
  6. 06 May, 2013 1 commit
  7. 03 May, 2013 1 commit
  8. 27 Mar, 2013 1 commit
  9. 13 Mar, 2013 2 commits
    • 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
    • Ronald S. Bultje's avatar
  10. 12 Mar, 2013 1 commit
  11. 14 Feb, 2013 1 commit
  12. 06 Feb, 2013 1 commit
  13. 14 Jan, 2013 1 commit
  14. 06 Jan, 2013 1 commit
  15. 29 Dec, 2012 1 commit
  16. 07 Dec, 2012 1 commit
  17. 04 Dec, 2012 1 commit
  18. 11 Nov, 2012 1 commit
  19. 03 Jul, 2012 4 commits
  20. 02 Jul, 2012 1 commit
  21. 23 Jun, 2012 1 commit
  22. 22 Jun, 2012 2 commits
  23. 17 Jun, 2012 1 commit
  24. 16 Feb, 2012 1 commit
  25. 15 Feb, 2012 2 commits
  26. 28 Jan, 2012 1 commit
  27. 03 Jan, 2012 1 commit
  28. 02 Jan, 2012 1 commit
  29. 26 Nov, 2011 1 commit
  30. 24 Nov, 2011 1 commit
  31. 05 Nov, 2011 1 commit
  32. 28 Oct, 2011 1 commit