1. 25 Mar, 2016 1 commit
  2. 25 Dec, 2015 1 commit
  3. 08 Sep, 2015 1 commit
  4. 07 Sep, 2015 1 commit
  5. 27 Jul, 2015 1 commit
  6. 09 Jun, 2015 1 commit
  7. 02 Jun, 2015 1 commit
  8. 30 May, 2015 1 commit
  9. 03 Mar, 2015 1 commit
  10. 14 Feb, 2015 1 commit
  11. 01 Feb, 2015 1 commit
  12. 04 Aug, 2014 1 commit
    • Vittorio Giovara's avatar
      avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_YA8 · e96c3b81
      Vittorio Giovara authored
      The rationale is that you have a packed format in form
      <greyscale sample> <alpha sample> <greyscale sample> <alpha sample>
      and shortening greyscale to 'G' might make one thing about Greenscale instead.
      An alias pixel format and color space name are provided for compatibility.
      e96c3b81
  13. 18 Mar, 2014 2 commits
  14. 27 Jan, 2014 1 commit
  15. 10 Jan, 2014 3 commits
  16. 31 Oct, 2013 1 commit
  17. 30 Oct, 2013 1 commit
  18. 03 Oct, 2013 1 commit
  19. 12 Sep, 2013 1 commit
  20. 04 Jul, 2013 1 commit
  21. 04 Apr, 2013 1 commit
  22. 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
  23. 08 Mar, 2013 1 commit
  24. 22 Dec, 2012 1 commit
  25. 04 Dec, 2012 1 commit
  26. 04 Nov, 2012 1 commit
  27. 12 Oct, 2012 1 commit
  28. 08 Oct, 2012 1 commit
  29. 04 Sep, 2012 1 commit
  30. 16 Aug, 2012 1 commit
  31. 07 Aug, 2012 1 commit
  32. 03 Aug, 2012 1 commit
  33. 30 Jul, 2012 1 commit
  34. 26 Jul, 2012 1 commit
  35. 22 Jul, 2012 1 commit
  36. 21 Jul, 2012 1 commit
  37. 20 Jul, 2012 1 commit