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