1. 28 Jul, 2013 1 commit
  2. 13 Mar, 2013 2 commits
    • Diego Biurrun's avatar
    • 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
  3. 08 Mar, 2013 2 commits
  4. 23 Jan, 2013 2 commits
  5. 14 Jan, 2013 2 commits
  6. 31 Dec, 2012 1 commit
  7. 04 Dec, 2012 1 commit
  8. 23 Nov, 2012 1 commit
  9. 17 Nov, 2012 1 commit
  10. 29 Oct, 2012 1 commit
  11. 13 Oct, 2012 1 commit
  12. 12 Oct, 2012 1 commit
  13. 08 Oct, 2012 1 commit
  14. 26 Sep, 2012 1 commit
  15. 07 Aug, 2012 1 commit
  16. 06 Apr, 2012 1 commit
  17. 31 Mar, 2012 1 commit
  18. 29 Mar, 2012 2 commits
  19. 28 Mar, 2012 2 commits
  20. 24 Mar, 2012 1 commit
  21. 04 Mar, 2012 1 commit
  22. 01 Mar, 2012 1 commit
  23. 23 Feb, 2012 1 commit
  24. 15 Feb, 2012 2 commits
  25. 18 Jan, 2012 1 commit
  26. 05 Jan, 2012 1 commit
  27. 20 Dec, 2011 1 commit
  28. 05 Nov, 2011 1 commit
  29. 29 Jul, 2011 1 commit
  30. 02 Jun, 2011 1 commit
  31. 29 May, 2011 1 commit
  32. 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
  33. 02 May, 2011 1 commit