Move a couple more things to core

master
Chris Robinson 2020-12-04 13:13:52 -08:00
parent 3a3094c887
commit c4132b80ed
9 changed files with 19 additions and 20 deletions

View File

@ -627,6 +627,8 @@ set(OPENAL_OBJS
al/state.cpp
)
set(ALC_OBJS
core/bs2b.cpp
core/bs2b.h
core/bsinc_defs.h
core/bsinc_tables.cpp
core/bsinc_tables.h
@ -641,6 +643,8 @@ set(ALC_OBJS
core/filters/splitter.h
core/mastering.cpp
core/mastering.h
core/uhjfilter.cpp
core/uhjfilter.h
alc/alc.cpp
alc/alcmain.h
@ -654,8 +658,6 @@ set(ALC_OBJS
alc/ambidefs.h
alc/bformatdec.cpp
alc/bformatdec.h
alc/bs2b.cpp
alc/bs2b.h
alc/buffer_storage.cpp
alc/buffer_storage.h
alc/compat.h
@ -693,8 +695,6 @@ set(ALC_OBJS
alc/panning.cpp
alc/ringbuffer.cpp
alc/ringbuffer.h
alc/uhjfilter.cpp
alc/uhjfilter.h
alc/uiddefs.cpp
alc/voice.cpp
alc/voice.h

View File

@ -78,12 +78,13 @@
#include "ambidefs.h"
#include "atomic.h"
#include "bformatdec.h"
#include "bs2b.h"
#include "compat.h"
#include "core/bs2b.h"
#include "core/devformat.h"
#include "core/mastering.h"
#include "core/filters/nfc.h"
#include "core/filters/splitter.h"
#include "core/uhjfilter.h"
#include "cpu_caps.h"
#include "effects/base.h"
#include "fpu_ctrl.h"
@ -97,7 +98,6 @@
#include "ringbuffer.h"
#include "strutils.h"
#include "threads.h"
#include "uhjfilter.h"
#include "vecmat.h"
#include "vector.h"

View File

@ -58,13 +58,14 @@
#include "ambidefs.h"
#include "atomic.h"
#include "bformatdec.h"
#include "bs2b.h"
#include "core/bs2b.h"
#include "core/bsinc_tables.h"
#include "core/devformat.h"
#include "core/filters/biquad.h"
#include "core/filters/nfc.h"
#include "core/filters/splitter.h"
#include "core/mastering.h"
#include "core/uhjfilter.h"
#include "cpu_caps.h"
#include "effects/base.h"
#include "fpu_ctrl.h"
@ -77,7 +78,6 @@
#include "ringbuffer.h"
#include "strutils.h"
#include "threads.h"
#include "uhjfilter.h"
#include "vecmat.h"
#include "voice.h"

View File

@ -2,7 +2,8 @@
#define AMBIDEFS_H
#include <array>
#include <cstdint>
#include <stddef.h>
#include <stdint.h>
/* The maximum number of Ambisonics channels. For a given order (o), the size
* needed will be (o+1)**2, thus zero-order has 1, first-order has 4, second-

View File

@ -50,14 +50,14 @@
#include "ambdec.h"
#include "ambidefs.h"
#include "bformatdec.h"
#include "bs2b.h"
#include "core/bs2b.h"
#include "core/devformat.h"
#include "core/uhjfilter.h"
#include "front_stablizer.h"
#include "hrtf.h"
#include "logging.h"
#include "math_defs.h"
#include "opthelpers.h"
#include "uhjfilter.h"
constexpr std::array<float,MAX_AMBI_CHANNELS> AmbiScale::FromN3D;

View File

@ -21,8 +21,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef BS2B_H
#define BS2B_H
#ifndef CORE_BS2B_H
#define CORE_BS2B_H
#include "almalloc.h"
@ -86,4 +86,4 @@ void bs2b_clear(bs2b *bs2b);
void bs2b_cross_feed(bs2b *bs2b, float *Left, float *Right, size_t SamplesToDo);
#endif /* BS2B_H */
#endif /* CORE_BS2B_H */

View File

@ -10,8 +10,6 @@
#include <algorithm>
#include <iterator>
#include "AL/al.h"
#include "alcomplex.h"
#include "alnumeric.h"
#include "opthelpers.h"

View File

@ -1,10 +1,10 @@
#ifndef UHJFILTER_H
#define UHJFILTER_H
#ifndef CORE_UHJFILTER_H
#define CORE_UHJFILTER_H
#include <array>
#include "almalloc.h"
#include "core/bufferline.h"
#include "bufferline.h"
struct Uhj2Encoder {
@ -36,4 +36,4 @@ struct Uhj2Encoder {
DEF_NEWDEL(Uhj2Encoder)
};
#endif /* UHJFILTER_H */
#endif /* CORE_UHJFILTER_H */