1. 21 Feb, 2017 6 commits
  2. 20 Feb, 2017 4 commits
  3. 18 Feb, 2017 1 commit
    • Mark Thompson's avatar
      webp: Fix alpha decoding · 7cb9296d
      Mark Thompson authored
      This was broken by 4e528206 - the webp
      decoder was assuming that it could set the output pixfmt of the vp8
      decoder directly, but after that change it no longer could because
      ff_get_format() was used instead.  This adds an internal get_format()
      callback to webp use of the vp8 decoder to override the pixfmt
      appropriately.
      7cb9296d
  4. 17 Feb, 2017 1 commit
  5. 16 Feb, 2017 4 commits
  6. 15 Feb, 2017 4 commits
  7. 14 Feb, 2017 1 commit
  8. 13 Feb, 2017 3 commits
  9. 12 Feb, 2017 1 commit
  10. 11 Feb, 2017 13 commits
  11. 10 Feb, 2017 2 commits
    • Martin Storsjö's avatar
      435cd7bc
    • Martin Storsjö's avatar
      arm/aarch64: vp9lpf: Calculate !hev directly · e1f9de86
      Martin Storsjö authored
      Previously we first calculated hev, and then negated it.
      
      Since we were able to schedule the negation in the middle
      of another calculation, we don't see any gain in all cases.
      
      Before:                     Cortex A7      A8      A9     A53  A53/AArch64
      vp9_loop_filter_v_4_8_neon:     147.0   129.0   115.8    89.0         88.7
      vp9_loop_filter_v_8_8_neon:     242.0   198.5   174.7   140.0        136.7
      vp9_loop_filter_v_16_8_neon:    500.0   419.5   382.7   293.0        275.7
      vp9_loop_filter_v_16_16_neon:   971.2   825.5   731.5   579.0        453.0
      After:
      vp9_loop_filter_v_4_8_neon:     143.0   127.7   114.8    88.0         87.7
      vp9_loop_filter_v_8_8_neon:     241.0   197.2   173.7   140.0        136.7
      vp9_loop_filter_v_16_8_neon:    497.0   419.5   379.7   293.0        275.7
      vp9_loop_filter_v_16_16_neon:   965.2   818.7   731.4   579.0        452.0
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      e1f9de86