1. 07 Jun, 2016 1 commit
  2. 22 Mar, 2016 1 commit
  3. 26 Dec, 2015 1 commit
  4. 14 Nov, 2015 1 commit
  5. 19 Apr, 2015 1 commit
  6. 30 Mar, 2015 1 commit
  7. 21 Feb, 2015 1 commit
  8. 26 Jun, 2014 1 commit
  9. 23 Jun, 2014 1 commit
  10. 01 Jun, 2014 2 commits
  11. 30 May, 2014 2 commits
  12. 30 Apr, 2014 1 commit
  13. 22 Mar, 2014 1 commit
  14. 25 Jan, 2014 1 commit
  15. 26 Dec, 2013 1 commit
  16. 31 Oct, 2013 1 commit
  17. 30 Oct, 2013 1 commit
  18. 17 Sep, 2013 1 commit
  19. 15 Aug, 2013 1 commit
  20. 15 Jul, 2013 4 commits
  21. 13 Jul, 2013 1 commit
  22. 04 Jul, 2013 5 commits
  23. 01 Jul, 2013 3 commits
  24. 01 Jun, 2013 1 commit
    • Kostya Shishkov's avatar
      indeo4: expand allowed quantiser range · 33f64fd5
      Kostya Shishkov authored
      Indeo 4 has quantiser range 0-31 instead of 0-23 for Indeo 5, and clipping
      quantiser leads to incorrect quantisation and DC prediction on low-quality
      videos.
      
      This fixes bug 259.
      33f64fd5
  25. 04 May, 2013 1 commit
  26. 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
  27. 08 Mar, 2013 2 commits
  28. 29 Dec, 2012 1 commit