aboutsummaryrefslogtreecommitdiff
path: root/audio/libconvolve
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
commit9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch)
tree9b071a8105704e992946dcd6b801e9fcb7635142 /audio/libconvolve
parent5a20e7990eb544509174d617d359bf0d4ac64737 (diff)
downloadports-9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896.tar.gz
ports-9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896.zip
Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=419133
Diffstat (limited to 'audio/libconvolve')
-rw-r--r--audio/libconvolve/files/patch-Makefile6
-rw-r--r--audio/libconvolve/files/patch-convolution__init.c (renamed from audio/libconvolve/files/patch-convolution_init.c)14
-rw-r--r--audio/libconvolve/files/patch-convolution__process.c (renamed from audio/libconvolve/files/patch-convolution_process.c)4
3 files changed, 12 insertions, 12 deletions
diff --git a/audio/libconvolve/files/patch-Makefile b/audio/libconvolve/files/patch-Makefile
index 1ab141eb90c3..22c193b3f084 100644
--- a/audio/libconvolve/files/patch-Makefile
+++ b/audio/libconvolve/files/patch-Makefile
@@ -1,5 +1,5 @@
---- Makefile.orig Mon Apr 2 09:20:41 2007
-+++ Makefile Mon Apr 2 09:20:55 2007
+--- Makefile.orig 2005-11-29 00:18:03 UTC
++++ Makefile
@@ -1,19 +1,18 @@
PREFIX=/usr/local
@@ -23,7 +23,7 @@
ST_TARGET = libconvolve.a
-@@ -53,5 +52,5 @@
+@@ -53,5 +52,5 @@ install: $(TARGET)
cp $(TARGET) $(PREFIX)/lib/
cp $(ST_TARGET) $(PREFIX)/lib/
cp convolve.h $(PREFIX)/include/
diff --git a/audio/libconvolve/files/patch-convolution_init.c b/audio/libconvolve/files/patch-convolution__init.c
index 6c5bebc4eb34..7fca9b6f5c4d 100644
--- a/audio/libconvolve/files/patch-convolution_init.c
+++ b/audio/libconvolve/files/patch-convolution__init.c
@@ -1,5 +1,5 @@
---- convolution_init.c.orig Mon Nov 28 00:24:57 2005
-+++ convolution_init.c Mon Apr 2 09:26:43 2007
+--- convolution_init.c.orig 2005-11-27 23:24:57 UTC
++++ convolution_init.c
@@ -17,8 +17,19 @@
*/
@@ -21,7 +21,7 @@
int convolution_init (convolution_t *conv,
int number_of_responses,
-@@ -47,12 +58,12 @@
+@@ -47,12 +58,12 @@ int convolution_init (convolution_t *con
// allocate FFT buffers
// as r2c stores only N/2+1 results, we don't need the padded size for this
// conv->fft_complex = (fftwf_complex*)malloc (sizeof(fftwf_complex) * (conv->chunk_length + 1));
@@ -36,7 +36,7 @@
// create fftw plans
conv->fft_plan_forward = fftwf_plan_dft_r2c_1d (2 * conv->chunk_length,
-@@ -100,7 +111,7 @@
+@@ -100,7 +111,7 @@ int convolution_init (convolution_t *con
* (conv->chunk_length + 1)
* conv->fft_responses[index]->number_of_chunks);
*/
@@ -45,7 +45,7 @@
16,
sizeof(fftwf_complex)
* (conv->chunk_length + 1)
-@@ -169,7 +180,7 @@
+@@ -169,7 +180,7 @@ int convolution_init (convolution_t *con
// need to divide (integer divide) the index by number_of_responses to get
// a valid index into the list of responses.
@@ -54,7 +54,7 @@
sizeof(fftwf_complex) * conv->fft_responses[index/conv->number_of_response_channels]->number_of_chunks
* (conv->chunk_length + 1));
-@@ -189,7 +200,7 @@
+@@ -189,7 +200,7 @@ int convolution_init (convolution_t *con
= (fftwf_complex*)malloc (sizeof(fftwf_complex) * conv->fft_responses[index]->number_of_chunks
* (conv->chunk_length + 1));
*/
@@ -63,7 +63,7 @@
sizeof(fftwf_complex) * conv->fft_responses[index]->number_of_chunks
* (conv->chunk_length + 1));
-@@ -222,7 +233,7 @@
+@@ -222,7 +233,7 @@ int convolution_init (convolution_t *con
for (index = 0; index < conv->number_of_response_channels; ++index) {
// conv->overlap_buffers[index] = (float*)malloc (sizeof(float) * conv->chunk_length);
diff --git a/audio/libconvolve/files/patch-convolution_process.c b/audio/libconvolve/files/patch-convolution__process.c
index a5582fb2a21e..da28f547847b 100644
--- a/audio/libconvolve/files/patch-convolution_process.c
+++ b/audio/libconvolve/files/patch-convolution__process.c
@@ -1,5 +1,5 @@
---- convolution_process.c.orig Mon Apr 2 09:22:07 2007
-+++ convolution_process.c Mon Apr 2 09:22:15 2007
+--- convolution_process.c.orig 2005-11-27 23:23:16 UTC
++++ convolution_process.c
@@ -23,7 +23,7 @@
#include <dsp/dspop.h>
#endif