1. 30 Oct, 2016 1 commit
  2. 28 Sep, 2016 1 commit
  3. 18 Feb, 2016 1 commit
  4. 27 Jul, 2015 1 commit
  5. 11 May, 2014 1 commit
  6. 11 Mar, 2014 1 commit
    • Carl Eugen Hoyos's avatar
      Revert "Allow stream-copying grayscale mov files." · 54bbe3e2
      Carl Eugen Hoyos authored
      This reverts commit 691dec62.
      
      The commit did not fix ticket #3215, it was fixed one commit earlier.
      The revert may break other use-cases but they should be fixed differently,
      the offending commit introduced too many problems.
      
      Fixes ticket #3377.
      Fixes ticket #3378.
      54bbe3e2
  7. 24 Dec, 2013 1 commit
  8. 03 Oct, 2013 1 commit
  9. 15 Aug, 2013 1 commit
  10. 23 Jul, 2013 2 commits
  11. 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
  12. 08 Mar, 2013 1 commit
  13. 06 Jan, 2013 1 commit
  14. 23 Dec, 2012 1 commit
  15. 04 Dec, 2012 2 commits
  16. 14 Nov, 2012 1 commit
  17. 08 Oct, 2012 1 commit
  18. 15 Aug, 2012 1 commit
  19. 07 Aug, 2012 1 commit
  20. 26 Jan, 2012 1 commit
  21. 06 Dec, 2011 1 commit
  22. 03 Aug, 2011 1 commit
  23. 29 Jul, 2011 1 commit
  24. 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
  25. 15 Apr, 2011 1 commit
  26. 19 Mar, 2011 1 commit
  27. 28 Jan, 2011 1 commit
  28. 26 Jan, 2011 1 commit
  29. 10 Jul, 2010 2 commits
  30. 20 Apr, 2010 1 commit
  31. 30 Mar, 2010 1 commit
  32. 13 Oct, 2009 1 commit
  33. 26 Jul, 2009 1 commit
  34. 07 Apr, 2009 1 commit
  35. 01 Feb, 2009 1 commit
  36. 11 Jan, 2009 1 commit
  37. 08 Sep, 2008 1 commit