diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2010-02-28 14:58:37 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2010-02-28 14:58:37 +0000 |
| commit | 0feeb6e8b7f5902ea3e177d2c493eb4cc7990500 (patch) | |
| tree | acce22e9579e445aea167be42807b680e192f76c | |
| parent | 4fa2ee7570ed749252bc9f3b9b348fba2cc92a49 (diff) | |
| download | rockbox-0feeb6e8b7f5902ea3e177d2c493eb4cc7990500.zip rockbox-0feeb6e8b7f5902ea3e177d2c493eb4cc7990500.tar.gz rockbox-0feeb6e8b7f5902ea3e177d2c493eb4cc7990500.tar.bz2 rockbox-0feeb6e8b7f5902ea3e177d2c493eb4cc7990500.tar.xz | |
FFT plugin: init mutex
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24973 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/fft/fft.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/fft/fft.c b/apps/plugins/fft/fft.c index f57d2ab..e62c919 100644 --- a/apps/plugins/fft/fft.c +++ b/apps/plugins/fft/fft.c @@ -1106,6 +1106,8 @@ enum plugin_status plugin_start(const void* parameter) rb->cpu_boost(true); #endif + rb->mutex_init(&input_mutex); + /* Defaults */ bool run = true; graph_settings.mode = 0; |