1. 06 Sep, 2019 4 commits
  2. 04 Sep, 2019 1 commit
  3. 02 Sep, 2019 7 commits
  4. 01 Sep, 2019 1 commit
  5. 31 Aug, 2019 1 commit
  6. 30 Aug, 2019 5 commits
  7. 28 Aug, 2019 1 commit
  8. 26 Aug, 2019 2 commits
  9. 22 Aug, 2019 3 commits
  10. 21 Aug, 2019 2 commits
  11. 20 Aug, 2019 5 commits
  12. 19 Aug, 2019 5 commits
  13. 17 Aug, 2019 2 commits
  14. 14 Aug, 2019 1 commit
    • Andreas Rheinhardt's avatar
      avfilter/vf_convolution: Fix build failures · 8fcc5d96
      Andreas Rheinhardt authored
      98e419cb added SIMD for the convolution filter for x64 systems. As
      usual, it used a check of the form
      if (ARCH_X86_64)
          ff_convolution_init_x86(s);
      and thereby relied on the compiler eliminating this pseudo-runtime check
      at compiletime for non x64 systems (for which ff_convolution_init_x86
      isn't defined) to compile. But vf_convolution.c contains more than one
      filter and if the convolution filter is disabled, but one of the other
      filters (prewitt, sobel, roberts) is enabled, the build will fail on x64,
      because ff_convolution_init_x86 isn't defined in this case.
      Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
      8fcc5d96