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