1. 09 Feb, 2017 1 commit
  2. 07 Feb, 2017 1 commit
  3. 27 Jul, 2015 1 commit
  4. 16 Nov, 2013 1 commit
  5. 03 Oct, 2013 1 commit
  6. 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
  7. 08 Mar, 2013 2 commits
  8. 25 Feb, 2013 1 commit
  9. 06 Jan, 2013 1 commit
  10. 04 Dec, 2012 1 commit
  11. 13 Oct, 2012 1 commit
  12. 08 Oct, 2012 1 commit
  13. 07 Aug, 2012 1 commit
  14. 06 Apr, 2012 1 commit
  15. 16 Feb, 2012 1 commit
  16. 02 Feb, 2012 1 commit
    • Justin Ruggles's avatar
      bethsoftvideo: fix palette reading. · c3a06615
      Justin Ruggles authored
      Return the correct number of consumed bytes and set *data_size = 0.
      Returned size is 1 too small, leading to that 1 byte being read as the next
      frame, which results in an extra blank frame at the beginning of the stream.
      c3a06615
  17. 10 Jan, 2012 1 commit
  18. 23 Nov, 2011 1 commit
  19. 13 Nov, 2011 1 commit
  20. 12 Nov, 2011 1 commit
  21. 05 Nov, 2011 1 commit
  22. 15 Jul, 2011 1 commit
  23. 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
  24. 19 Mar, 2011 1 commit
  25. 28 Jan, 2011 1 commit
  26. 26 Jan, 2011 1 commit
  27. 20 Apr, 2010 1 commit
  28. 30 Mar, 2010 1 commit
  29. 05 Jun, 2009 1 commit
  30. 07 Apr, 2009 1 commit
  31. 01 Feb, 2009 1 commit
  32. 12 Jun, 2008 1 commit
  33. 09 May, 2008 1 commit
  34. 27 Apr, 2008 1 commit
  35. 21 Mar, 2008 1 commit
  36. 01 Feb, 2008 1 commit
  37. 07 Apr, 2007 3 commits