Mercurial > hg > libxtract
comparison src/init.c @ 116:859495925633
- Fixed build fail if --enable-fft not specified
- Fixed doxygen build so that it includes libxtract.h
- Doxygen tweaks
author | Jamie Bullock <jamie@postlude.co.uk> |
---|---|
date | Wed, 26 Mar 2008 13:04:33 +0000 |
parents | 72a9a393d5bd |
children | 8c8b508dcc95 |
comparison
equal
deleted
inserted
replaced
115:6c5ece9cba3a | 116:859495925633 |
---|---|
283 __attribute__((constructor)) void init() | 283 __attribute__((constructor)) void init() |
284 #else | 284 #else |
285 void _init()· | 285 void _init()· |
286 #endif | 286 #endif |
287 { | 287 { |
288 #ifdef XTRACT_FFT | |
288 fft_plans.spectrum_plan = NULL; | 289 fft_plans.spectrum_plan = NULL; |
289 fft_plans.autocorrelation_fft_plan_1 = NULL; | 290 fft_plans.autocorrelation_fft_plan_1 = NULL; |
290 fft_plans.autocorrelation_fft_plan_2 = NULL; | 291 fft_plans.autocorrelation_fft_plan_2 = NULL; |
291 fft_plans.dct_plan = NULL; | 292 fft_plans.dct_plan = NULL; |
292 } | 293 #endif |
294 } |