aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/decoder/flac_common.c (renamed from src/decoder/_flac_common.c)2
-rw-r--r--src/decoder/flac_common.h (renamed from src/decoder/_flac_common.h)0
-rw-r--r--src/decoder/flac_decoder_plugin.c4
-rw-r--r--src/decoder/ogg_common.c (renamed from src/decoder/_ogg_common.c)2
-rw-r--r--src/decoder/ogg_common.h (renamed from src/decoder/_ogg_common.h)0
-rw-r--r--src/decoder/vorbis_decoder_plugin.c2
6 files changed, 5 insertions, 5 deletions
diff --git a/src/decoder/_flac_common.c b/src/decoder/flac_common.c
index bab3995f0..510d16d59 100644
--- a/src/decoder/_flac_common.c
+++ b/src/decoder/flac_common.c
@@ -22,7 +22,7 @@
*/
#include "config.h"
-#include "_flac_common.h"
+#include "flac_common.h"
#include "flac_metadata.h"
#include "flac_pcm.h"
#include "audio_check.h"
diff --git a/src/decoder/_flac_common.h b/src/decoder/flac_common.h
index c898a47cf..c898a47cf 100644
--- a/src/decoder/_flac_common.h
+++ b/src/decoder/flac_common.h
diff --git a/src/decoder/flac_decoder_plugin.c b/src/decoder/flac_decoder_plugin.c
index fb0b3502d..818f75904 100644
--- a/src/decoder/flac_decoder_plugin.c
+++ b/src/decoder/flac_decoder_plugin.c
@@ -18,12 +18,12 @@
*/
#include "config.h" /* must be first for large file support */
-#include "_flac_common.h"
+#include "flac_common.h"
#include "flac_compat.h"
#include "flac_metadata.h"
#if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7
-#include "_ogg_common.h"
+#include "ogg_common.h"
#endif
#include <glib.h>
diff --git a/src/decoder/_ogg_common.c b/src/decoder/ogg_common.c
index 09d2712da..d57e247fa 100644
--- a/src/decoder/_ogg_common.c
+++ b/src/decoder/ogg_common.c
@@ -22,7 +22,7 @@
*/
#include "config.h"
-#include "_ogg_common.h"
+#include "ogg_common.h"
ogg_stream_type ogg_stream_type_detect(struct input_stream *inStream)
{
diff --git a/src/decoder/_ogg_common.h b/src/decoder/ogg_common.h
index 85e4ebba6..85e4ebba6 100644
--- a/src/decoder/_ogg_common.h
+++ b/src/decoder/ogg_common.h
diff --git a/src/decoder/vorbis_decoder_plugin.c b/src/decoder/vorbis_decoder_plugin.c
index 15cdc0ca9..40594faad 100644
--- a/src/decoder/vorbis_decoder_plugin.c
+++ b/src/decoder/vorbis_decoder_plugin.c
@@ -19,7 +19,7 @@
#include "config.h"
#include "vorbis_comments.h"
-#include "_ogg_common.h"
+#include "ogg_common.h"
#include "audio_check.h"
#include "uri.h"
#include "tag_handler.h"