decoder/_ogg_common: rename to ogg_common.c

This commit is contained in:
Max Kellermann 2012-09-04 11:28:36 +02:00
parent 2a4c799471
commit 015e1ab183
7 changed files with 8 additions and 9 deletions

View File

@ -101,8 +101,6 @@ mpd_headers = \
src/decoder/flac_compat.h \
src/decoder/flac_metadata.h \
src/decoder/flac_pcm.h \
src/decoder/_flac_common.h \
src/decoder/_ogg_common.h \
src/decoder/pcm_decoder_plugin.h \
src/input_init.h \
src/input_plugin.h \
@ -589,14 +587,15 @@ libdecoder_plugins_a_SOURCES += src/decoder/mp4ff_decoder_plugin.c
endif
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
if HAVE_FLAC_COMMON
libdecoder_plugins_a_SOURCES += \
src/decoder/flac_metadata.c \
src/decoder/flac_pcm.c \
src/decoder/_flac_common.c
src/decoder/flac_common.c src/decoder/flac_common.h
endif
if ENABLE_VORBIS_DECODER

View File

@ -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"

View File

@ -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>

View File

@ -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)
{

View File

@ -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"