1. 15 8月, 2014 1 次提交
  2. 01 7月, 2014 1 次提交
  3. 04 4月, 2014 1 次提交
  4. 29 3月, 2014 1 次提交
  5. 04 2月, 2014 1 次提交
  6. 09 1月, 2014 1 次提交
  7. 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
  8. 01 11月, 2013 1 次提交
  9. 16 10月, 2013 1 次提交
  10. 04 10月, 2013 1 次提交
  11. 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
  12. 07 7月, 2013 1 次提交
  13. 30 3月, 2013 1 次提交
  14. 14 3月, 2013 1 次提交
  15. 08 3月, 2013 1 次提交
  16. 23 1月, 2013 1 次提交
  17. 20 12月, 2012 1 次提交
  18. 05 12月, 2012 1 次提交
  19. 28 10月, 2012 1 次提交
  20. 12 10月, 2012 1 次提交
  21. 08 10月, 2012 1 次提交
  22. 10 8月, 2012 1 次提交
  23. 07 8月, 2012 1 次提交
  24. 26 7月, 2012 1 次提交
  25. 15 7月, 2012 5 次提交
  26. 31 5月, 2012 1 次提交
    • R
      vp8: move block coeff arithcoder on stack. · 6163d880
      Ronald S. Bultje 提交于
      This prevents gcc from assuming that contents of it may have changed
      between calls to vp56_range_get_prob(), thus preventing countless (and
      unnecessary) movs. Decoding of sintel trailer goes from (avg+SG) 9.796
      +/- 0.003 to 9.635 +/- 0.010.
      6163d880
  27. 03 5月, 2012 1 次提交
    • R
      vp8: update frame size changes on thread context switches. · 82a0497c
      Ronald S. Bultje 提交于
      This properly synchronizes frame size changes between threads if
      subsequent threads abort decoding before frame size is initialized, i.e.
      it prevents the thread after that from ping-ponging back to the original
      value.
      
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      82a0497c
  28. 07 4月, 2012 1 次提交
  29. 24 3月, 2012 1 次提交
  30. 20 3月, 2012 1 次提交
    • A
      vp8: avoid race condition on segment map. · 30011bf2
      Aaron Colwell 提交于
      This change avoids accessing the segment map of the previous frame if
      segmentation is not enabled for the current frame. The caller of
      decode_mb_mode() only calls ff_thread_await_progress() on the reference
      segmentation index array if segmentation is enabled, so Chromium's TSAN
      will report a race when accessing this data while segmentation is not
      enabled.
      Signed-off-by: NRonald S. Bultje <rsbultje@gmail.com>
      30011bf2
  31. 16 2月, 2012 1 次提交
  32. 08 2月, 2012 1 次提交
    • R
      vp8: always update next_framep[] before returning from decode_frame(). · fb90785e
      Ronald S. Bultje 提交于
      Also slightly move around code not allocate a new frame if we won't
      decode it. This prevents us from putting undecoded frames in frame
      pointers, which (in mt decoding) other threads will use and wait on
      as references, causing a deadlock (if we skipped decoding) or a crash
      (if we didn't initialized next_framep[] at all).
      
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      fb90785e
  33. 07 2月, 2012 1 次提交
  34. 02 12月, 2011 1 次提交
  35. 19 11月, 2011 1 次提交
  36. 29 10月, 2011 1 次提交