summaryrefslogtreecommitdiff
path: root/apps/plugins/fft (follow)
Commit message (Collapse)AuthorAge
* Convert some more stuff to mylcd_ and support pgfx as well.Michael Sevakis2010-06-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26543 a1c6a512-1295-4272-9138-f99709370657
* Add a wrapper header, mylcd.h, in the lib subdirectory, which lets plugins' ↵Michael Sevakis2010-06-04
| | | | | | code automatically call the proper functions depending if compilation is for greylib or color display, also forms proper call to grey_ and xlcd_. mylcd_ub_ call greylib unbuffered routines, regular lcd routines otherwise. Form is mylcd_<fnname>, <fnname> is the symbol name stripped of prefixes lcd_, grey_, or xlcd_. Convert a couple plugins I know well (easy job). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26542 a1c6a512-1295-4272-9138-f99709370657
* More FFT fun: No point in computing and combining the 2nd FFT if it's just ↵Michael Sevakis2010-06-03
| | | | | | being made null. Use the regular complex FFT (called by fftr anyway) and save ram and computation for a given number of bins. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26507 a1c6a512-1295-4272-9138-f99709370657
* FFT plugin: Some speed regulation for too-fast targets. (50FPS)Michael Sevakis2010-06-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26503 a1c6a512-1295-4272-9138-f99709370657
* FFT plugin: give everything in the main file a nice 'static'-ing. Saves ↵Michael Sevakis2010-06-03
| | | | | | approx. 1-3K size depending upon the target and so should speed it up a bit. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26499 a1c6a512-1295-4272-9138-f99709370657
* FFT plugin: Use worker thread only on multiprocessor targets.Michael Sevakis2010-06-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26498 a1c6a512-1295-4272-9138-f99709370657
* FFT Plugin: Should use scale_factor, not LCD_WIDTH/HEIGHT to break the ↵Michael Sevakis2010-06-02
| | | | | | spectrogram loop. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26471 a1c6a512-1295-4272-9138-f99709370657
* FFT Plugin: Revamp the main code to rid it of 64-bit math. Use 32-bit ↵Michael Sevakis2010-06-02
| | | | | | kiss_fft_scalar because 16-bit integers are generally a poor choice for computation on-target. Simplify display code to speed it up. Add logarithmic frequency display (need keymappings, guessed on some). On dual-core, perform FFT on COP. Add some support function to fixedpoint.c. ... and stuff. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26470 a1c6a512-1295-4272-9138-f99709370657
* fft: use long home button to exit on fuzeRafaël Carré2010-06-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26443 a1c6a512-1295-4272-9138-f99709370657
* fft: always enable spectrogram, gray mode works with LCD_DEPTH == 1Rafaël Carré2010-05-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26140 a1c6a512-1295-4272-9138-f99709370657
* fft plugin: move const data into a c file and use no wider types than ↵Nils Wallménius2010-05-17
| | | | | | necessary, makes the plugin about 63kB smaller git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26100 a1c6a512-1295-4272-9138-f99709370657
* FFT plugin: The 64-bit sqrt function is no longer neededDelyan Kratunov2010-05-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25791 a1c6a512-1295-4272-9138-f99709370657
* FFT plugin: eliminate 64-bit math. This should result in faster and probably ↵Delyan Kratunov2010-05-02
| | | | | | more accurate calculations. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25790 a1c6a512-1295-4272-9138-f99709370657
* Add MPIO HD200 port - changed filesMarcin Bukat2010-04-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25724 a1c6a512-1295-4272-9138-f99709370657
* FFT plugin: init mutexMaurus Cuelenaere2010-02-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24973 a1c6a512-1295-4272-9138-f99709370657
* kiss_fftr appears to perform two real-valued ffts in parallel -- so feed ↵Dave Hooper2010-02-22
| | | | | | it only one signal of size N/2 (as opposed to splitting a single signal of size N into two interleaved parts which is what it seemed to be doing before) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24865 a1c6a512-1295-4272-9138-f99709370657
* Packard Bell Vibe 500: Finish plugin keymaps. Rockbox compiles clean now for ↵Szymon Dziok2010-02-14
| | | | | | the target. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24658 a1c6a512-1295-4272-9138-f99709370657
* fft: fix yellowTomer Shalev2010-02-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24613 a1c6a512-1295-4272-9138-f99709370657
* fft: fix redTomer Shalev2010-02-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24612 a1c6a512-1295-4272-9138-f99709370657
* fft plugin: add touchscreen key-mapping and enable plugin for touchscreen ↵Tomer Shalev2010-02-11
| | | | | | targets git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24611 a1c6a512-1295-4272-9138-f99709370657
* New plugin: FFT, A frequency analyzer pluginFrank Gevaerts2010-02-10
There is some more work needed: - Keymaps are definitely not perfect, touchscreen targets are disabled due to no keymap - There is no manual yet Author: Delyan Kratunov Flyspray: FS#10065 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24587 a1c6a512-1295-4272-9138-f99709370657