diff options
author | Max Kellermann <max@musicpd.org> | 2019-06-16 12:11:44 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-06-16 12:11:44 +0200 |
commit | fd5e74dbd058f11ef8ca015e6d2442316b6f9b5f (patch) | |
tree | 2826479171981ec7f937a7b314211d31675129ac /src/pcm | |
parent | b64571f4a5433c9b56b4b4fe625b7e15446c165f (diff) |
pcm/Pcm{Dop,Export}: drop "Pcm" prefix
Diffstat (limited to 'src/pcm')
-rw-r--r-- | src/pcm/Dop.cxx (renamed from src/pcm/PcmDop.cxx) | 2 | ||||
-rw-r--r-- | src/pcm/Dop.hxx (renamed from src/pcm/PcmDop.hxx) | 0 | ||||
-rw-r--r-- | src/pcm/Export.cxx (renamed from src/pcm/PcmExport.cxx) | 4 | ||||
-rw-r--r-- | src/pcm/Export.hxx (renamed from src/pcm/PcmExport.hxx) | 0 | ||||
-rw-r--r-- | src/pcm/meson.build | 4 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/pcm/PcmDop.cxx b/src/pcm/Dop.cxx index a0a6bdae6..671abd2e6 100644 --- a/src/pcm/PcmDop.cxx +++ b/src/pcm/Dop.cxx @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "PcmDop.hxx" +#include "Dop.hxx" #include "PcmBuffer.hxx" #include "AudioFormat.hxx" #include "util/ConstBuffer.hxx" diff --git a/src/pcm/PcmDop.hxx b/src/pcm/Dop.hxx index 0a2c9b205..0a2c9b205 100644 --- a/src/pcm/PcmDop.hxx +++ b/src/pcm/Dop.hxx diff --git a/src/pcm/PcmExport.cxx b/src/pcm/Export.cxx index 7d2f18588..32f72318c 100644 --- a/src/pcm/PcmExport.cxx +++ b/src/pcm/Export.cxx @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "PcmExport.hxx" +#include "Export.hxx" #include "AudioFormat.hxx" #include "Order.hxx" #include "PcmPack.hxx" @@ -28,7 +28,7 @@ #include "Dsd16.hxx" #include "Dsd32.hxx" #include "PcmDsd.hxx" -#include "PcmDop.hxx" +#include "Dop.hxx" #endif #include <assert.h> diff --git a/src/pcm/PcmExport.hxx b/src/pcm/Export.hxx index 48da4c272..48da4c272 100644 --- a/src/pcm/PcmExport.hxx +++ b/src/pcm/Export.hxx diff --git a/src/pcm/meson.build b/src/pcm/meson.build index e7ac5433b..40a3925f0 100644 --- a/src/pcm/meson.build +++ b/src/pcm/meson.build @@ -5,9 +5,9 @@ pcm_sources = [ 'SampleFormat.cxx', 'Interleave.cxx', 'PcmBuffer.cxx', - 'PcmExport.cxx', + 'Export.cxx', 'PcmConvert.cxx', - 'PcmDop.cxx', + 'Dop.cxx', 'Volume.cxx', 'Silence.cxx', 'PcmMix.cxx', |