1. 28 Jul, 2018 3 commits
  2. 27 Jul, 2018 6 commits
  3. 26 Jul, 2018 5 commits
  4. 25 Jul, 2018 4 commits
  5. 24 Jul, 2018 2 commits
  6. 23 Jul, 2018 4 commits
  7. 22 Jul, 2018 3 commits
  8. 21 Jul, 2018 4 commits
  9. 20 Jul, 2018 8 commits
  10. 19 Jul, 2018 1 commit
    • Carl Eugen Hoyos's avatar
      lavfi/af_afir,af_aiir: Remove a variable that is always -1. · 9cb3d8fc
      Carl Eugen Hoyos authored
      Fixes two warnings:
      libavfilter/af_afir.c:194:45: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow]
           int dx = FFABS(x1-x0), sx = x0 < x1 ? 1 : -1;
                                       ~~~~~~~~~~~~^~~~
      libavfilter/af_aiir.c:689:45: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow]
           int dx = FFABS(x1-x0), sx = x0 < x1 ? 1 : -1;
                                       ~~~~~~~~~~~~^~~~
      9cb3d8fc