aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-07-29 17:54:07 -0700
committerChris Robinson <[email protected]>2019-07-29 17:54:07 -0700
commit4c9e18c5a0c29548eb38db636785aa7064713c5d (patch)
tree7b7904b9a0c33256ec7f094b31c7ed0cdafc487d /alc
parentc2de0782cfec62d6a1c3fe2d409d0f64528ae5f7 (diff)
Rename al/* sources to avoid camel-case
Diffstat (limited to 'alc')
-rw-r--r--alc/alc.cpp14
-rw-r--r--alc/alcontext.h2
-rw-r--r--alc/alu.cpp10
-rw-r--r--alc/alu.h2
-rw-r--r--alc/effects/autowah.cpp4
-rw-r--r--alc/effects/chorus.cpp4
-rw-r--r--alc/effects/compressor.cpp4
-rw-r--r--alc/effects/dedicated.cpp4
-rw-r--r--alc/effects/distortion.cpp4
-rw-r--r--alc/effects/echo.cpp6
-rw-r--r--alc/effects/equalizer.cpp4
-rw-r--r--alc/effects/fshifter.cpp4
-rw-r--r--alc/effects/modulator.cpp4
-rw-r--r--alc/effects/null.cpp4
-rw-r--r--alc/effects/pshifter.cpp7
-rw-r--r--alc/effects/reverb.cpp6
-rw-r--r--alc/effects/vmorpher.cpp4
-rw-r--r--alc/mixer/mixer_c.cpp3
-rw-r--r--alc/mixer/mixer_sse.cpp2
-rw-r--r--alc/mixvoice.cpp6
-rw-r--r--alc/panning.cpp2
21 files changed, 48 insertions, 52 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp
index de0038a2..538bea9f 100644
--- a/alc/alc.cpp
+++ b/alc/alc.cpp
@@ -51,13 +51,14 @@
#include "AL/alext.h"
#include "AL/efx.h"
-#include "alAuxEffectSlot.h"
+#include "al/auxeffectslot.h"
+#include "al/effect.h"
+#include "al/error.h"
+#include "al/event.h"
+#include "al/filter.h"
+#include "al/listener.h"
+#include "al/source.h"
#include "alcmain.h"
-#include "alEffect.h"
-#include "alError.h"
-#include "alFilter.h"
-#include "alListener.h"
-#include "alSource.h"
#include "albyte.h"
#include "alconfig.h"
#include "alcontext.h"
@@ -74,7 +75,6 @@
#include "compat.h"
#include "cpu_caps.h"
#include "effects/base.h"
-#include "event.h"
#include "filters/nfc.h"
#include "filters/splitter.h"
#include "fpu_modes.h"
diff --git a/alc/alcontext.h b/alc/alcontext.h
index cf956079..a2da77b0 100644
--- a/alc/alcontext.h
+++ b/alc/alcontext.h
@@ -17,7 +17,7 @@
#include "almalloc.h"
#include "alnumeric.h"
-#include "alListener.h"
+#include "al/listener.h"
#include "alu.h"
diff --git a/alc/alu.cpp b/alc/alu.cpp
index 31689997..b2e1effa 100644
--- a/alc/alu.cpp
+++ b/alc/alu.cpp
@@ -45,11 +45,12 @@
#include "AL/alc.h"
#include "AL/efx.h"
-#include "alAuxEffectSlot.h"
-#include "alBuffer.h"
+#include "al/auxeffectslot.h"
+#include "al/buffer.h"
+#include "al/effect.h"
+#include "al/event.h"
+#include "al/listener.h"
#include "alcmain.h"
-#include "alEffect.h"
-#include "alListener.h"
#include "alcontext.h"
#include "almalloc.h"
#include "alnumeric.h"
@@ -60,7 +61,6 @@
#include "bs2b.h"
#include "cpu_caps.h"
#include "effects/base.h"
-#include "event.h"
#include "filters/biquad.h"
#include "filters/nfc.h"
#include "filters/splitter.h"
diff --git a/alc/alu.h b/alc/alu.h
index ef88bdf6..88c22e6f 100644
--- a/alc/alu.h
+++ b/alc/alu.h
@@ -10,7 +10,7 @@
#include "AL/alc.h"
#include "AL/alext.h"
-#include "alBuffer.h"
+#include "al/buffer.h"
#include "alcmain.h"
#include "almalloc.h"
#include "alspan.h"
diff --git a/alc/effects/autowah.cpp b/alc/effects/autowah.cpp
index 96292636..298d5c96 100644
--- a/alc/effects/autowah.cpp
+++ b/alc/effects/autowah.cpp
@@ -25,10 +25,10 @@
#include <algorithm>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
#include "filters/biquad.h"
#include "vecmat.h"
diff --git a/alc/effects/chorus.cpp b/alc/effects/chorus.cpp
index d475b57a..28514a9b 100644
--- a/alc/effects/chorus.cpp
+++ b/alc/effects/chorus.cpp
@@ -30,9 +30,9 @@
#include "AL/alc.h"
#include "AL/efx.h"
-#include "alAuxEffectSlot.h"
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
-#include "alError.h"
#include "alcontext.h"
#include "almalloc.h"
#include "alnumeric.h"
diff --git a/alc/effects/compressor.cpp b/alc/effects/compressor.cpp
index 4a487097..86e2e02b 100644
--- a/alc/effects/compressor.cpp
+++ b/alc/effects/compressor.cpp
@@ -22,11 +22,11 @@
#include <cstdlib>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
#include "alu.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "vecmat.h"
diff --git a/alc/effects/dedicated.cpp b/alc/effects/dedicated.cpp
index b31b3750..c05df772 100644
--- a/alc/effects/dedicated.cpp
+++ b/alc/effects/dedicated.cpp
@@ -24,10 +24,10 @@
#include <cmath>
#include <algorithm>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
diff --git a/alc/effects/distortion.cpp b/alc/effects/distortion.cpp
index 59557395..a74575d4 100644
--- a/alc/effects/distortion.cpp
+++ b/alc/effects/distortion.cpp
@@ -25,10 +25,10 @@
#include <cmath>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
#include "filters/biquad.h"
diff --git a/alc/effects/echo.cpp b/alc/effects/echo.cpp
index c10f2eb2..8e309cbb 100644
--- a/alc/effects/echo.cpp
+++ b/alc/effects/echo.cpp
@@ -25,11 +25,11 @@
#include <algorithm>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
+#include "al/filter.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alFilter.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
#include "filters/biquad.h"
#include "vector.h"
diff --git a/alc/effects/equalizer.cpp b/alc/effects/equalizer.cpp
index 69ab5021..0ae3a25f 100644
--- a/alc/effects/equalizer.cpp
+++ b/alc/effects/equalizer.cpp
@@ -26,10 +26,10 @@
#include <algorithm>
#include <functional>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
#include "filters/biquad.h"
#include "vecmat.h"
diff --git a/alc/effects/fshifter.cpp b/alc/effects/fshifter.cpp
index b47aa00e..b36c53a1 100644
--- a/alc/effects/fshifter.cpp
+++ b/alc/effects/fshifter.cpp
@@ -26,10 +26,10 @@
#include <complex>
#include <algorithm>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
#include "alcomplex.h"
diff --git a/alc/effects/modulator.cpp b/alc/effects/modulator.cpp
index 086482d7..5f28e1da 100644
--- a/alc/effects/modulator.cpp
+++ b/alc/effects/modulator.cpp
@@ -26,10 +26,10 @@
#include <cmath>
#include <algorithm>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
#include "filters/biquad.h"
#include "vecmat.h"
diff --git a/alc/effects/null.cpp b/alc/effects/null.cpp
index e55c8699..b4799077 100644
--- a/alc/effects/null.cpp
+++ b/alc/effects/null.cpp
@@ -5,10 +5,10 @@
#include "AL/al.h"
#include "AL/alc.h"
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
namespace {
diff --git a/alc/effects/pshifter.cpp b/alc/effects/pshifter.cpp
index 39d3cf1a..eac5894b 100644
--- a/alc/effects/pshifter.cpp
+++ b/alc/effects/pshifter.cpp
@@ -30,14 +30,13 @@
#include <complex>
#include <algorithm>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
+#include "alcomplex.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
-#include "alcomplex.h"
-
namespace {
diff --git a/alc/effects/reverb.cpp b/alc/effects/reverb.cpp
index ac996b3f..82b04436 100644
--- a/alc/effects/reverb.cpp
+++ b/alc/effects/reverb.cpp
@@ -29,12 +29,12 @@
#include <algorithm>
#include <functional>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
+#include "al/listener.h"
#include "alcmain.h"
#include "alcontext.h"
#include "alu.h"
-#include "alAuxEffectSlot.h"
-#include "alListener.h"
-#include "alError.h"
#include "bformatdec.h"
#include "filters/biquad.h"
#include "vector.h"
diff --git a/alc/effects/vmorpher.cpp b/alc/effects/vmorpher.cpp
index eebba3f1..d1bf8587 100644
--- a/alc/effects/vmorpher.cpp
+++ b/alc/effects/vmorpher.cpp
@@ -25,10 +25,10 @@
#include <algorithm>
#include <functional>
+#include "al/auxeffectslot.h"
+#include "al/error.h"
#include "alcmain.h"
#include "alcontext.h"
-#include "alAuxEffectSlot.h"
-#include "alError.h"
#include "alu.h"
namespace {
diff --git a/alc/mixer/mixer_c.cpp b/alc/mixer/mixer_c.cpp
index 47c4a6f4..3513cf2b 100644
--- a/alc/mixer/mixer_c.cpp
+++ b/alc/mixer/mixer_c.cpp
@@ -6,8 +6,7 @@
#include "alcmain.h"
#include "alu.h"
-#include "alSource.h"
-#include "alAuxEffectSlot.h"
+
#include "defs.h"
#include "hrtfbase.h"
diff --git a/alc/mixer/mixer_sse.cpp b/alc/mixer/mixer_sse.cpp
index b763fdbd..516dabac 100644
--- a/alc/mixer/mixer_sse.cpp
+++ b/alc/mixer/mixer_sse.cpp
@@ -9,8 +9,6 @@
#include "alcmain.h"
#include "alu.h"
-#include "alSource.h"
-#include "alAuxEffectSlot.h"
#include "defs.h"
#include "hrtfbase.h"
diff --git a/alc/mixvoice.cpp b/alc/mixvoice.cpp
index aea04b15..0d7b2cee 100644
--- a/alc/mixvoice.cpp
+++ b/alc/mixvoice.cpp
@@ -39,9 +39,10 @@
#include "AL/al.h"
#include "AL/alc.h"
-#include "alBuffer.h"
+#include "al/buffer.h"
+#include "al/event.h"
+#include "al/source.h"
#include "alcmain.h"
-#include "alSource.h"
#include "albyte.h"
#include "alconfig.h"
#include "alcontext.h"
@@ -50,7 +51,6 @@
#include "alspan.h"
#include "alu.h"
#include "cpu_caps.h"
-#include "event.h"
#include "filters/biquad.h"
#include "filters/nfc.h"
#include "filters/splitter.h"
diff --git a/alc/panning.cpp b/alc/panning.cpp
index 3a67e33a..fd1e29ce 100644
--- a/alc/panning.cpp
+++ b/alc/panning.cpp
@@ -32,8 +32,8 @@
#include <algorithm>
#include <functional>
+#include "al/auxeffectslot.h"
#include "alcmain.h"
-#include "alAuxEffectSlot.h"
#include "alu.h"
#include "alconfig.h"
#include "ambdec.h"