1. 26 Dec, 2013 1 commit
  2. 31 Oct, 2013 1 commit
  3. 30 Oct, 2013 1 commit
  4. 17 Sep, 2013 1 commit
  5. 15 Aug, 2013 1 commit
  6. 15 Jul, 2013 4 commits
  7. 13 Jul, 2013 1 commit
  8. 04 Jul, 2013 5 commits
  9. 01 Jul, 2013 3 commits
  10. 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
  11. 04 May, 2013 1 commit
  12. 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
  13. 08 Mar, 2013 2 commits
  14. 29 Dec, 2012 1 commit
  15. 14 Dec, 2012 3 commits
  16. 04 Dec, 2012 2 commits
  17. 23 Nov, 2012 1 commit
  18. 10 Nov, 2012 1 commit
  19. 09 Nov, 2012 2 commits
  20. 04 Nov, 2012 1 commit
  21. 26 Oct, 2012 1 commit
  22. 12 Oct, 2012 1 commit
  23. 10 Oct, 2012 1 commit
  24. 29 Sep, 2012 3 commits