[debian-edu-commits] debian-edu/pkg-team/ 05/06: Drop well-defined-loop.patch, included upstream.

Petter Reinholdtsen pere at moszumanska.debian.org
Sat Sep 19 10:03:44 UTC 2015


This is an automated email from the git hooks/post-receive script.

pere pushed a commit to branch master
in repository lmms.

commit 9493a90e24fceacf7c393a6f15cea01603e820ce
Author: Petter Reinholdtsen <pere at hungry.com>
Date:   Sat Sep 19 09:37:46 2015 +0200

    Drop well-defined-loop.patch, included upstream.
---
 debian/patches/series                  |  1 -
 debian/patches/well-defined-loop.patch | 36 ----------------------------------
 2 files changed, 37 deletions(-)

diff --git a/debian/patches/series b/debian/patches/series
index 652b855..ed51ee0 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
-well-defined-loop.patch
 desktop-argument.patch
diff --git a/debian/patches/well-defined-loop.patch b/debian/patches/well-defined-loop.patch
deleted file mode 100644
index 61dc24c..0000000
--- a/debian/patches/well-defined-loop.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Description: Fix undefined loop behaviour.
-Author: Petter Reinholdtsen <pere at debian.org>
-Bug-Debian: http://bugs.debian.org/753177
-Last-Update: 2014-10-01
-
---- lmms-1.0.3.orig/plugins/LadspaEffect/swh/bode_shifter_cv_1432.c
-+++ lmms-1.0.3/plugins/LadspaEffect/swh/bode_shifter_cv_1432.c
-@@ -350,7 +350,7 @@ static void runAddingBodeShifterCV(LADSP
- 	  /* Perform the Hilbert FIR convolution
- 	   * (probably FFT would be faster) */
- 	  hilb = 0.0f;
--	  for (i = 0; i <= NZEROS/2; i++) {
-+	  for (i = 0; i < NZEROS/2; i++) {
- 	    hilb += (xcoeffs[i] * delay[(dptr - i*2) & (D_SIZE - 1)]);
- 	  }
- 
---- lmms-1.0.3.orig/plugins/LadspaEffect/swh/surround_encoder_1401.c
-+++ lmms-1.0.3/plugins/LadspaEffect/swh/surround_encoder_1401.c
-@@ -228,7 +228,7 @@ static void runSurroundEncoder(LADSPA_Ha
- 	for (pos = 0; pos < sample_count; pos++) {
- 	  delay[dptr] = s[pos];
- 	  hilb = 0.0f;
--	  for (i = 0; i <= NZEROS/2; i++) {
-+	  for (i = 0; i < NZEROS/2; i++) {
- 	    hilb += (xcoeffs[i] * delay[(dptr - i*2) & (D_SIZE - 1)]);
- 	  }
- 	  dptr = (dptr + 1) & (D_SIZE - 1);
-@@ -296,7 +296,7 @@ static void runAddingSurroundEncoder(LAD
- 	for (pos = 0; pos < sample_count; pos++) {
- 	  delay[dptr] = s[pos];
- 	  hilb = 0.0f;
--	  for (i = 0; i <= NZEROS/2; i++) {
-+	  for (i = 0; i < NZEROS/2; i++) {
- 	    hilb += (xcoeffs[i] * delay[(dptr - i*2) & (D_SIZE - 1)]);
- 	  }
- 	  dptr = (dptr + 1) & (D_SIZE - 1);

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-edu/pkg-team/lmms.git



More information about the debian-edu-commits mailing list