[SCM] juce/master: Backported upstream fix for IIRFilter with SIMD registers
umlaeute at users.alioth.debian.org
umlaeute at users.alioth.debian.org
Tue Dec 19 14:38:13 UTC 2017
The following commit has been merged in the master branch:
commit 311fb0db874c851a9df0ef1ecc9e0972da0dfd7a
Author: IOhannes m zmölnig (Debian/GNU) <umlaeute at debian.org>
Date: Tue Dec 19 15:07:09 2017 +0100
Backported upstream fix for IIRFilter with SIMD registers
diff --git a/debian/patches/fixed_iirfilter_reset.patch b/debian/patches/fixed_iirfilter_reset.patch
new file mode 100644
index 0000000..b78e678
--- /dev/null
+++ b/debian/patches/fixed_iirfilter_reset.patch
@@ -0,0 +1,19 @@
+Description: Fixed build error with IIR filter and SIMD registers
+Author: IOhannes m zmölnig
+Origin: upstream
+Bug: https://github.com/WeAreROLI/JUCE/issues/292
+Applied-Upstream: https://github.com/WeAreROLI/JUCE/commit/13d18e406c33724a9f8870c4602458fc6d94b750
+Last-Update: 2017-12-19
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- juce.orig/modules/juce_dsp/processors/juce_IIRFilter.h
++++ juce/modules/juce_dsp/processors/juce_IIRFilter.h
+@@ -88,7 +88,7 @@
+ Note that this clears the processing state, but the type of filter and
+ its coefficients aren't changed.
+ */
+- void reset() { reset ({}); }
++ void reset() { reset (SampleType {}); }
+
+ /** Resets the filter's processing pipeline to a specific value.
+ @see reset
diff --git a/debian/patches/series b/debian/patches/series
index 0b0e526..b1d5052 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,5 @@
fix-spelling.patch
+fixed_iirfilter_reset.patch
reproducible-date.patch
debian_fixed-defines.patch
debian_gpl_variant.patch
--
juce packaging
More information about the pkg-multimedia-commits
mailing list