diff options
| author | ayumi <ayumi@noreply.codeberg.org> | 2025-04-23 23:09:36 +0200 |
|---|---|---|
| committer | ayumi <ayumi@noreply.codeberg.org> | 2025-04-23 23:09:36 +0200 |
| commit | fb044d5ccae7cead4c2d2fda3f729fbfc1737005 (patch) | |
| tree | 854a02730a8679d134a273640a0917c3e4d5f4e1 /lib | |
| parent | 48556dd603cac0107143f3cdc815c765baa640a9 (diff) | |
| download | tangara-fw-fb044d5ccae7cead4c2d2fda3f729fbfc1737005.tar.gz | |
Move WavPack decoder to IRAM
In my tests this improves the decoding speed by around 3%.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/wavpack/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | lib/wavpack/wavpack.lf | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/wavpack/CMakeLists.txt b/lib/wavpack/CMakeLists.txt index 98fcda95..f2f24933 100644 --- a/lib/wavpack/CMakeLists.txt +++ b/lib/wavpack/CMakeLists.txt @@ -1,4 +1,5 @@ idf_component_register( SRCS bits.c float.c wputils.c metadata.c unpack.c words.c INCLUDE_DIRS . + LDFRAGMENTS wavpack.lf ) diff --git a/lib/wavpack/wavpack.lf b/lib/wavpack/wavpack.lf new file mode 100644 index 00000000..686acad8 --- /dev/null +++ b/lib/wavpack/wavpack.lf @@ -0,0 +1,4 @@ +[mapping:libwavpack] +archive: libwavpack.a +entries: + * (noflash) |
