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