1. 07 4月, 2014 2 次提交
  2. 06 4月, 2014 1 次提交
  3. 04 4月, 2014 1 次提交
  4. 29 3月, 2014 2 次提交
  5. 27 3月, 2014 1 次提交
  6. 25 3月, 2014 2 次提交
  7. 15 2月, 2014 1 次提交
  8. 04 2月, 2014 1 次提交
  9. 20 1月, 2014 1 次提交
  10. 09 1月, 2014 1 次提交
  11. 15 11月, 2013 1 次提交
    • R
      lavc: Edge emulation with dst/src linesize · 458446ac
      Ronald S. Bultje 提交于
      Allow supporting files for which the image stride is smaller than
      the maximum block size + number of subpel mc taps, e.g. a 64x64 VP9
      file or a 16x16 VP8 file with -fflags +emu_edge.
      458446ac
  12. 10 11月, 2013 1 次提交
  13. 01 11月, 2013 1 次提交
  14. 16 10月, 2013 1 次提交
  15. 04 10月, 2013 2 次提交
  16. 29 9月, 2013 1 次提交
  17. 28 9月, 2013 1 次提交
  18. 19 9月, 2013 1 次提交
    • J
      Add a WebP decoder · c4bfa098
      Justin Ruggles 提交于
      Container and lossy decoding by Aneesh Dogra <aneesh@sugarlabs.org>
      Lossless decoding by Justin Ruggles <justin.ruggles@gmail.com>
      c4bfa098
  19. 07 7月, 2013 1 次提交
  20. 23 6月, 2013 1 次提交
  21. 30 3月, 2013 2 次提交
  22. 22 3月, 2013 1 次提交
  23. 14 3月, 2013 2 次提交
    • D
      12e25ed2
    • C
      lavc: factorize ff_{thread_,re,}get_buffer error messages. · 1ec94b0f
      Clément Bœsch 提交于
      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
  24. 08 3月, 2013 1 次提交
  25. 23 1月, 2013 1 次提交
  26. 20 12月, 2012 1 次提交
  27. 05 12月, 2012 1 次提交
  28. 28 10月, 2012 1 次提交
  29. 13 10月, 2012 1 次提交
  30. 12 10月, 2012 1 次提交
  31. 08 10月, 2012 1 次提交
  32. 10 8月, 2012 1 次提交
  33. 07 8月, 2012 1 次提交
  34. 26 7月, 2012 1 次提交