aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-31 20:33:26 +0100
committerMax Kellermann <max@duempel.org>2013-01-31 21:11:06 +0100
commit1b175025fecb1c10e6719d4ab79c188d473fccc4 (patch)
treea1d04e92416e72c78f474de25c0aeee3374d47a1 /test
parentccdf7184bea4bcc38ae468095ec400e2a2a4db3b (diff)
pcm_*: convert to C++
Diffstat (limited to 'test')
-rw-r--r--test/read_mixer.cxx2
-rw-r--r--test/run_filter.cxx2
-rw-r--r--test/software_volume.cxx2
-rw-r--r--test/test_pcm_channels.cxx4
-rw-r--r--test/test_pcm_dither.cxx5
-rw-r--r--test/test_pcm_volume.cxx2
6 files changed, 6 insertions, 11 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx
index 799bbefd..d0426c9a 100644
--- a/test/read_mixer.cxx
+++ b/test/read_mixer.cxx
@@ -25,7 +25,7 @@ extern "C" {
#include "filter_registry.h"
}
-#include "pcm_volume.h"
+#include "PcmVolume.hxx"
#include "GlobalEvents.hxx"
#include "Main.hxx"
#include "event/Loop.hxx"
diff --git a/test/run_filter.cxx b/test/run_filter.cxx
index 87672adc..2d53ed49 100644
--- a/test/run_filter.cxx
+++ b/test/run_filter.cxx
@@ -23,7 +23,7 @@
#include "AudioParser.hxx"
#include "audio_format.h"
#include "filter_plugin.h"
-#include "pcm_volume.h"
+#include "PcmVolume.hxx"
#include "mixer_control.h"
#include "stdbin.h"
diff --git a/test/software_volume.cxx b/test/software_volume.cxx
index 2579a4f0..92993239 100644
--- a/test/software_volume.cxx
+++ b/test/software_volume.cxx
@@ -24,7 +24,7 @@
*/
#include "config.h"
-#include "pcm_volume.h"
+#include "PcmVolume.hxx"
#include "AudioParser.hxx"
#include "audio_format.h"
#include "stdbin.h"
diff --git a/test/test_pcm_channels.cxx b/test/test_pcm_channels.cxx
index 66f4bc63..38d03051 100644
--- a/test/test_pcm_channels.cxx
+++ b/test/test_pcm_channels.cxx
@@ -19,9 +19,7 @@
#include "config.h"
#include "test_pcm_all.hxx"
-extern "C" {
-#include "pcm_channels.h"
-}
+#include "PcmChannels.hxx"
#include "pcm_buffer.h"
#include <glib.h>
diff --git a/test/test_pcm_dither.cxx b/test/test_pcm_dither.cxx
index 47b94764..44830746 100644
--- a/test/test_pcm_dither.cxx
+++ b/test/test_pcm_dither.cxx
@@ -18,10 +18,7 @@
*/
#include "test_pcm_all.hxx"
-
-extern "C" {
-#include "pcm_dither.h"
-}
+#include "PcmDither.hxx"
#include <glib.h>
diff --git a/test/test_pcm_volume.cxx b/test/test_pcm_volume.cxx
index ab844441..4ec76e79 100644
--- a/test/test_pcm_volume.cxx
+++ b/test/test_pcm_volume.cxx
@@ -18,7 +18,7 @@
*/
#include "test_pcm_all.hxx"
-#include "pcm_volume.h"
+#include "PcmVolume.hxx"
#include <glib.h>