~ubuntu-branches/ubuntu/trusty/lmms/trusty

« back to all changes in this revision

Viewing changes to include/fft_helpers.h

  • Committer: Package Import Robot
  • Author(s): Israel Dahl
  • Date: 2013-02-28 20:58:18 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130228205818-spbc545gwofxkkif
Tags: 0.4.14-0ubuntu1
* New upstream release.
  - Graphically enhanced AudioFileProcessor plugin
  - Fixed bug with magnetic knobs
  - Fixed various crashes
  - Completely revised VST support (improved VST effect support,
  timesync support and many more)
  - Added multitrack export
  - Added Hydrogen song import plugin
  - Fixed wrong chords
  - Improvements to automation framework
* debian/lmms.install debian/lmms-common.install
  - moved /usr/share/applications to lmms.install
* debian/control
  - updated Standards-Version to 3.9.4
* debian/copyright
  - updated to make current
* debian/rules
  - fixed Lintian errors during build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * fft_helpers.h - some functions around FFT analysis
3
3
 *
4
 
 * Copyright (c) 2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
 
4
 * Copyright (c) 2008-2012 Tobias Doerffel <tobydox/at/users.sourceforge.net>
5
5
 * 
6
6
 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
7
7
 *
29
29
#include "lmmsconfig.h"
30
30
#include "export.h"
31
31
 
32
 
#ifdef LMMS_HAVE_FFTW3F
33
 
 
34
32
#include <fftw3.h>
35
33
 
36
34
const int FFT_BUFFER_SIZE = 2048;
85
83
float EXPORT signalpower(float *timesignal, int num_values);
86
84
 
87
85
#endif
88
 
 
89
 
#endif