diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-09-14 12:59:27 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-09-14 12:59:27 +0000 |
commit | 2a2dee709978fe08582e6f647d89a4a2709e0713 (patch) | |
tree | 57becc14a042a8430afc0012549d21dda6bc8e8f /src/post/visualizations/fft.c | |
parent | 03d951ea8e6ac26130e7bcf03cfaab8dd3eda9c8 (diff) | |
download | xine-lib-2a2dee709978fe08582e6f647d89a4a2709e0713.tar.gz xine-lib-2a2dee709978fe08582e6f647d89a4a2709e0713.tar.bz2 |
2 forgotten printf
CVS patchset: 5375
CVS date: 2003/09/14 12:59:27
Diffstat (limited to 'src/post/visualizations/fft.c')
-rw-r--r-- | src/post/visualizations/fft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/visualizations/fft.c b/src/post/visualizations/fft.c index 5dfc40eab..e1a644e39 100644 --- a/src/post/visualizations/fft.c +++ b/src/post/visualizations/fft.c @@ -127,7 +127,7 @@ fft_t *fft_new (int bits) const double TWOPIoN = (atan(1.0) * 8.0) / (double)SAMPLES; const double TWOPIoNm1 = (atan(1.0) * 8.0) / (double)(SAMPLES - 1); - printf("fft_new: bits=%d\n", bits); + /* printf("fft_new: bits=%d\n", bits); */ fft = (fft_t*)malloc(sizeof(fft_t)); if (!fft) |