summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibAudio/MP3Loader.h
diff options
context:
space:
mode:
authorkleines Filmröllchen <filmroellchen@serenityos.org>2022-07-17 11:35:31 +0200
committerLinus Groh <mail@linusgroh.de>2022-07-19 11:17:45 +0100
commit00e13b5b27282fabbef31430f158dcf5bd321aa9 (patch)
tree62d0e2c58e94b1dfda67ed670bfaf9bfc8ab84c0 /Userland/Libraries/LibAudio/MP3Loader.h
parent3f59356c79a044e7f2c49a7e456f8309d47508fd (diff)
downloadserenity-00e13b5b27282fabbef31430f158dcf5bd321aa9.zip
LibDSP: Rename library namespace to DSP
That's the standard naming convention, but I didn't follow it when originally creating LibDSP and nobody corrected me, so here I am one year later :^)
Diffstat (limited to 'Userland/Libraries/LibAudio/MP3Loader.h')
-rw-r--r--Userland/Libraries/LibAudio/MP3Loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibAudio/MP3Loader.h b/Userland/Libraries/LibAudio/MP3Loader.h
index 925dc9a9df..092ca85aba 100644
--- a/Userland/Libraries/LibAudio/MP3Loader.h
+++ b/Userland/Libraries/LibAudio/MP3Loader.h
@@ -58,8 +58,8 @@ private:
AK::Vector<AK::Tuple<size_t, int>> m_seek_table;
AK::Array<AK::Array<AK::Array<float, 18>, 32>, 2> m_last_values {};
AK::Array<AK::Array<float, 1024>, 2> m_synthesis_buffer {};
- static LibDSP::MDCT<36> s_mdct_36;
- static LibDSP::MDCT<12> s_mdct_12;
+ static DSP::MDCT<36> s_mdct_36;
+ static DSP::MDCT<12> s_mdct_12;
u32 m_sample_rate { 0 };
u8 m_num_channels { 0 };