Move some more sources to core

master
Chris Robinson 2021-04-24 03:47:23 -07:00
parent 7387148006
commit 519672c8e5
6 changed files with 12 additions and 12 deletions

View File

@ -651,6 +651,8 @@ set(CORE_OBJS
core/bsinc_tables.cpp
core/bsinc_tables.h
core/bufferline.h
core/converter.cpp
core/converter.h
core/cpu_caps.cpp
core/cpu_caps.h
core/devformat.cpp
@ -677,7 +679,8 @@ set(CORE_OBJS
core/mastering.h
core/resampler_limits.h
core/uhjfilter.cpp
core/uhjfilter.h)
core/uhjfilter.h
core/uiddefs.cpp)
set(HAVE_RTKIT 0)
option(ALSOFT_REQUIRE_RTKIT "Require RTKit/D-Bus support" FALSE)
@ -755,8 +758,6 @@ set(ALC_OBJS
alc/bformatdec.h
alc/buffer_storage.cpp
alc/buffer_storage.h
alc/converter.cpp
alc/converter.h
alc/effectslot.cpp
alc/effectslot.h
alc/effects/base.h
@ -777,7 +778,6 @@ set(ALC_OBJS
alc/front_stablizer.h
alc/inprogext.h
alc/panning.cpp
alc/uiddefs.cpp
alc/voice.cpp
alc/voice.h
alc/voice_change.h)

View File

@ -32,7 +32,7 @@
#include "alcmain.h"
#include "alu.h"
#include "ringbuffer.h"
#include "converter.h"
#include "core/converter.h"
#include "core/logging.h"
#include "backends/base.h"

View File

@ -59,7 +59,7 @@
#include "alcmain.h"
#include "alu.h"
#include "comptr.h"
#include "converter.h"
#include "core/converter.h"
#include "core/helpers.h"
#include "core/logging.h"
#include "ringbuffer.h"

View File

@ -12,7 +12,7 @@
#include "albit.h"
#include "albyte.h"
#include "alnumeric.h"
#include "core/fpu_ctrl.h"
#include "fpu_ctrl.h"
struct CTag;
struct CopyTag;

View File

@ -1,12 +1,12 @@
#ifndef CONVERTER_H
#define CONVERTER_H
#ifndef CORE_CONVERTER_H
#define CORE_CONVERTER_H
#include <cstddef>
#include <memory>
#include "almalloc.h"
#include "core/devformat.h"
#include "core/mixer/defs.h"
#include "devformat.h"
#include "mixer/defs.h"
using uint = unsigned int;
@ -56,4 +56,4 @@ struct ChannelConverter {
void convert(const void *src, float *dst, uint frames) const;
};
#endif /* CONVERTER_H */
#endif /* CORE_CONVERTER_H */