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