File: 03-fftune.patch

package info (click to toggle)
swami 2.0.0%2Bsvn389-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,320 kB
  • ctags: 3,912
  • sloc: ansic: 33,423; sh: 10,272; makefile: 604; xml: 22; sed: 16
file content (18 lines) | stat: -rw-r--r-- 682 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Fix loading fftune.so plugin
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=843638
Author: Jaromír Mikeš <mira.mikes@seznam.cz>
Forwarded: no

Index: swami/src/plugins/fftune.c
===================================================================
--- swami.orig/src/plugins/fftune.c
+++ swami/src/plugins/fftune.c
@@ -268,7 +268,7 @@ fftune_spectra_finalize (GObject *object
 {
   FFTuneSpectra *spectra = FFTUNE_SPECTRA (object);
 
-  if (spectra->spectrum) fftw_free (spectra->spectrum);
+  if (spectra->spectrum) fftwf_free (spectra->spectrum);
   if (spectra->sample) g_object_unref (spectra->sample);
   if (spectra->tunevals) 
     g_free (spectra->tunevals);