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