Move the ambdec loader to core

This commit is contained in:
Chris Robinson
2020-12-25 06:30:47 -08:00
parent fe9ec157fd
commit 20820fd01b
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -584,6 +584,8 @@ set(COMMON_OBJS
# Core library routines # Core library routines
set(CORE_OBJS set(CORE_OBJS
core/ambdec.cpp
core/ambdec.h
core/ambidefs.cpp core/ambidefs.cpp
core/ambidefs.h core/ambidefs.h
core/bs2b.cpp core/bs2b.cpp
@@ -659,8 +661,6 @@ set(ALC_OBJS
alc/alconfig.cpp alc/alconfig.cpp
alc/alconfig.h alc/alconfig.h
alc/alcontext.h alc/alcontext.h
alc/ambdec.cpp
alc/ambdec.h
alc/async_event.h alc/async_event.h
alc/bformatdec.cpp alc/bformatdec.cpp
alc/bformatdec.h alc/bformatdec.h
+1 -1
View File
@@ -12,7 +12,7 @@
#include "almalloc.h" #include "almalloc.h"
#include "alu.h" #include "alu.h"
#include "ambdec.h" #include "core/ambdec.h"
#include "core/filters/splitter.h" #include "core/filters/splitter.h"
#include "front_stablizer.h" #include "front_stablizer.h"
#include "math_defs.h" #include "math_defs.h"
+1 -1
View File
@@ -47,8 +47,8 @@
#include "alspan.h" #include "alspan.h"
#include "alstring.h" #include "alstring.h"
#include "alu.h" #include "alu.h"
#include "ambdec.h"
#include "bformatdec.h" #include "bformatdec.h"
#include "core/ambdec.h"
#include "core/ambidefs.h" #include "core/ambidefs.h"
#include "core/bs2b.h" #include "core/bs2b.h"
#include "core/devformat.h" #include "core/devformat.h"
View File
+3 -3
View File
@@ -1,5 +1,5 @@
#ifndef AMBDEC_H #ifndef CORE_AMBDEC_H
#define AMBDEC_H #define CORE_AMBDEC_H
#include <array> #include <array>
#include <string> #include <string>
@@ -45,4 +45,4 @@ struct AmbDecConf {
int load(const char *fname) noexcept; int load(const char *fname) noexcept;
}; };
#endif /* AMBDEC_H */ #endif /* CORE_AMBDEC_H */