mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 22:52:10 +02:00
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 :^)
This commit is contained in:
committed by
Linus Groh
parent
3f59356c79
commit
00e13b5b27
@@ -13,8 +13,8 @@
|
||||
|
||||
namespace Audio {
|
||||
|
||||
LibDSP::MDCT<12> MP3LoaderPlugin::s_mdct_12;
|
||||
LibDSP::MDCT<36> MP3LoaderPlugin::s_mdct_36;
|
||||
DSP::MDCT<12> MP3LoaderPlugin::s_mdct_12;
|
||||
DSP::MDCT<36> MP3LoaderPlugin::s_mdct_36;
|
||||
|
||||
MP3LoaderPlugin::MP3LoaderPlugin(StringView path)
|
||||
: m_file(Core::File::construct(path))
|
||||
|
||||
Reference in New Issue
Block a user