Move fmt_traits to core

master
Chris Robinson 2020-12-13 21:12:03 -08:00
parent 783904e414
commit 56af137ba0
5 changed files with 9 additions and 9 deletions

View File

@ -602,6 +602,8 @@ set(CORE_OBJS
core/filters/nfc.h
core/filters/splitter.cpp
core/filters/splitter.h
core/fmt_traits.cpp
core/fmt_traits.h
core/mastering.cpp
core/mastering.h
core/uhjfilter.cpp
@ -683,8 +685,6 @@ set(ALC_OBJS
alc/effects/pshifter.cpp
alc/effects/reverb.cpp
alc/effects/vmorpher.cpp
alc/fmt_traits.cpp
alc/fmt_traits.h
alc/fpu_ctrl.cpp
alc/fpu_ctrl.h
alc/front_stablizer.h

View File

@ -17,9 +17,9 @@
#include "buffer_storage.h"
#include "core/ambidefs.h"
#include "core/filters/splitter.h"
#include "core/fmt_traits.h"
#include "effects/base.h"
#include "effectslot.h"
#include "fmt_traits.h"
#include "logging.h"
#include "polyphase_resampler.h"

View File

@ -50,10 +50,10 @@
#include "core/filters/biquad.h"
#include "core/filters/nfc.h"
#include "core/filters/splitter.h"
#include "core/fmt_traits.h"
#include "core/mixer/defs.h"
#include "core/mixer/hrtfdefs.h"
#include "cpu_caps.h"
#include "fmt_traits.h"
#include "hrtf.h"
#include "inprogext.h"
#include "logging.h"

View File

@ -1,8 +1,8 @@
#ifndef ALC_FMT_TRAITS_H
#define ALC_FMT_TRAITS_H
#ifndef CORE_FMT_TRAITS_H
#define CORE_FMT_TRAITS_H
#include <cstddef>
#include <cstdint>
#include <stddef.h>
#include <stdint.h>
#include "albyte.h"
#include "buffer_storage.h"
@ -78,4 +78,4 @@ inline void LoadSampleArray(DstT *RESTRICT dst, const al::byte *src, const size_
} // namespace al
#endif /* ALC_FMT_TRAITS_H */
#endif /* CORE_FMT_TRAITS_H */