Commit 015e1ab1 authored by Max Kellermann's avatar Max Kellermann

decoder/_ogg_common: rename to ogg_common.c

parent 2a4c7994
...@@ -101,8 +101,6 @@ mpd_headers = \ ...@@ -101,8 +101,6 @@ mpd_headers = \
src/decoder/flac_compat.h \ src/decoder/flac_compat.h \
src/decoder/flac_metadata.h \ src/decoder/flac_metadata.h \
src/decoder/flac_pcm.h \ src/decoder/flac_pcm.h \
src/decoder/_flac_common.h \
src/decoder/_ogg_common.h \
src/decoder/pcm_decoder_plugin.h \ src/decoder/pcm_decoder_plugin.h \
src/input_init.h \ src/input_init.h \
src/input_plugin.h \ src/input_plugin.h \
...@@ -589,14 +587,15 @@ libdecoder_plugins_a_SOURCES += src/decoder/mp4ff_decoder_plugin.c ...@@ -589,14 +587,15 @@ libdecoder_plugins_a_SOURCES += src/decoder/mp4ff_decoder_plugin.c
endif endif
if HAVE_OGG_COMMON if HAVE_OGG_COMMON
libdecoder_plugins_a_SOURCES += src/decoder/_ogg_common.c libdecoder_plugins_a_SOURCES += \
src/decoder/ogg_common.c src/decoder/ogg_common.h
endif endif
if HAVE_FLAC_COMMON if HAVE_FLAC_COMMON
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/flac_metadata.c \ src/decoder/flac_metadata.c \
src/decoder/flac_pcm.c \ src/decoder/flac_pcm.c \
src/decoder/_flac_common.c src/decoder/flac_common.c src/decoder/flac_common.h
endif endif
if ENABLE_VORBIS_DECODER if ENABLE_VORBIS_DECODER
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
*/ */
#include "config.h" #include "config.h"
#include "_flac_common.h" #include "flac_common.h"
#include "flac_metadata.h" #include "flac_metadata.h"
#include "flac_pcm.h" #include "flac_pcm.h"
#include "audio_check.h" #include "audio_check.h"
......
...@@ -18,12 +18,12 @@ ...@@ -18,12 +18,12 @@
*/ */
#include "config.h" /* must be first for large file support */ #include "config.h" /* must be first for large file support */
#include "_flac_common.h" #include "flac_common.h"
#include "flac_compat.h" #include "flac_compat.h"
#include "flac_metadata.h" #include "flac_metadata.h"
#if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7 #if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7
#include "_ogg_common.h" #include "ogg_common.h"
#endif #endif
#include <glib.h> #include <glib.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
*/ */
#include "config.h" #include "config.h"
#include "_ogg_common.h" #include "ogg_common.h"
ogg_stream_type ogg_stream_type_detect(struct input_stream *inStream) ogg_stream_type ogg_stream_type_detect(struct input_stream *inStream)
{ {
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "vorbis_comments.h" #include "vorbis_comments.h"
#include "_ogg_common.h" #include "ogg_common.h"
#include "audio_check.h" #include "audio_check.h"
#include "uri.h" #include "uri.h"
#include "tag_handler.h" #include "tag_handler.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment