1. 11 Nov, 2014 1 commit
  2. 10 Nov, 2014 1 commit
  3. 27 May, 2014 1 commit
  4. 22 Mar, 2014 2 commits
  5. 04 Feb, 2014 1 commit
  6. 06 Jan, 2014 1 commit
  7. 30 Dec, 2013 3 commits
  8. 29 Dec, 2013 3 commits
  9. 03 Oct, 2013 1 commit
  10. 25 Sep, 2013 1 commit
  11. 07 May, 2013 1 commit
  12. 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
  13. 08 Mar, 2013 1 commit
  14. 22 Jan, 2013 2 commits
  15. 20 Dec, 2012 1 commit
  16. 04 Dec, 2012 1 commit
  17. 12 Nov, 2012 1 commit
  18. 10 Nov, 2012 1 commit
  19. 08 Oct, 2012 1 commit
  20. 29 Sep, 2012 1 commit
  21. 23 Aug, 2012 1 commit
  22. 09 Aug, 2012 1 commit
  23. 07 Aug, 2012 1 commit
  24. 03 Aug, 2012 2 commits
    • Ronald S. Bultje's avatar
      7191e1c4
    • Ronald S. Bultje's avatar
      lagarith: pad RGB buffer by 1 byte. · 98d0d192
      Ronald S. Bultje authored
      For left HFYU prediction, we predict from the buffer buf+1 using 8- or
      16-byte reads. This means that aligning the buffer by 16 bytes is in
      itself not sufficient, because if the width itself is 16- or 8-byte
      aligned, the buffer will not be padded, and thus a read of size 16 at
      buf+1 will overflow boundaries at the right edge. Padding the buffer by
      1 byte is sufficient to not overflow its boundaries.
      
      Fixes bug 342.
      98d0d192
  25. 29 Jun, 2012 1 commit
  26. 21 Jun, 2012 1 commit
  27. 09 May, 2012 1 commit
  28. 08 May, 2012 2 commits
  29. 06 May, 2012 1 commit
  30. 15 Apr, 2012 1 commit
  31. 14 Apr, 2012 1 commit
  32. 06 Apr, 2012 1 commit