1. 25 Oct, 2016 1 commit
  2. 07 Jun, 2016 1 commit
  3. 04 May, 2016 1 commit
  4. 02 Nov, 2015 1 commit
  5. 27 Jul, 2015 1 commit
  6. 26 Apr, 2015 1 commit
  7. 19 Apr, 2015 1 commit
  8. 24 Aug, 2014 1 commit
  9. 15 Aug, 2014 1 commit
  10. 18 Dec, 2013 3 commits
  11. 03 Oct, 2013 1 commit
  12. 19 Apr, 2013 1 commit
  13. 13 Mar, 2013 2 commits
    • 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
    • Ronald S. Bultje's avatar
      interplayvideo: use hpeldsp instead of dsputil for half-pel functions. · 04a75bb7
      Ronald S. Bultje authored
      This makes interplayvideo independent of dsputil.
      04a75bb7
  14. 08 Mar, 2013 1 commit
  15. 30 Jan, 2013 1 commit
  16. 14 Jan, 2013 2 commits
  17. 04 Dec, 2012 2 commits
  18. 08 Oct, 2012 1 commit
  19. 07 Aug, 2012 1 commit
  20. 11 Apr, 2012 1 commit
  21. 06 Apr, 2012 1 commit
  22. 30 Mar, 2012 1 commit
  23. 25 Mar, 2012 1 commit
  24. 23 Mar, 2012 2 commits
  25. 15 Feb, 2012 1 commit
  26. 07 Jan, 2012 1 commit
  27. 22 Dec, 2011 1 commit
  28. 29 Jul, 2011 1 commit
  29. 02 Jun, 2011 1 commit
  30. 07 May, 2011 1 commit
    • Stefano Sabatini's avatar
      lavc: set defaults in internal codec frames · 01042d41
      Stefano Sabatini authored
      This is required specifically for setting frame->format to -1,
      otherwise it will be set to 0 = PIX_FMT_YUV420P and code reading
      the format from the output decoded frame will get misled.
      
      In particular fix regressions occurring with the pending vsrc_buffer
      patch.
      01042d41
  31. 15 Apr, 2011 1 commit
  32. 19 Mar, 2011 1 commit
  33. 28 Jan, 2011 1 commit
  34. 26 Jan, 2011 1 commit