decoder_api: convert to C++

This commit is contained in:
Max Kellermann
2013-07-28 13:18:48 +02:00
parent 2277d143fa
commit 43f613d9be
46 changed files with 61 additions and 73 deletions

View File

@@ -20,7 +20,7 @@
#include "config.h"
#include "AdPlugDecoderPlugin.h"
#include "tag_handler.h"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
extern "C" {
#include "audio_check.h"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "AudiofileDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "tag_handler.h"

View File

@@ -25,7 +25,7 @@
#include "config.h"
#include "DsdLib.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "util/bit_reverse.h"
#include "tag_handler.h"

View File

@@ -28,7 +28,7 @@
#include "config.h"
#include "DsdiffDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "util/bit_reverse.h"
#include "tag_handler.h"

View File

@@ -29,7 +29,7 @@
#include "config.h"
#include "DsfDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "util/bit_reverse.h"
#include "DsdLib.hxx"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "FaadDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "DecoderBuffer.hxx"
#include "audio_check.h"
#include "tag_handler.h"

View File

@@ -22,7 +22,7 @@
#include "config.h"
#include "FfmpegDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "FfmpegMetaData.hxx"
#include "tag_handler.h"
#include "InputStream.hxx"

View File

@@ -25,7 +25,7 @@
#define MPD_FLAC_COMMON_HXX
#include "FlacInput.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
extern "C" {
#include "pcm/pcm_buffer.h"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "FlacInput.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "gcc.h"
#include "InputStream.hxx"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "FluidsynthDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "conf.h"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "GmeDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "tag_handler.h"
#include "util/UriUtil.hxx"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "MadDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "conf.h"
extern "C" {

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "MikmodDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "mpd_error.h"
#include "tag_handler.h"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "ModplugDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "tag_handler.h"
#include <glib.h>

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "MpcdecDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "tag_handler.h"

View File

@@ -19,7 +19,7 @@
#include "config.h" /* must be first for large file support */
#include "Mpg123DecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "tag_handler.h"

View File

@@ -24,7 +24,7 @@
#ifndef MPD_OGG_CODEC_HXX
#define MPD_OGG_CODEC_HXX
#include "decoder_api.h"
#include "DecoderAPI.hxx"
enum ogg_codec {
OGG_CODEC_UNKNOWN,

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "OggUtil.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
bool
OggFeed(ogg_sync_state &oy, struct decoder *decoder,

View File

@@ -24,7 +24,7 @@
#include "OggUtil.hxx"
#include "OggFind.hxx"
#include "OggSyncState.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "OggCodec.hxx"
#include "audio_check.h"
#include "tag_handler.h"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "decoder/PcmDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
extern "C" {
#include "util/byte_reverse.h"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "SndfileDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "audio_check.h"
#include "tag_handler.h"

View File

@@ -20,7 +20,7 @@
#include "config.h"
#include "VorbisDecoderPlugin.h"
#include "VorbisComments.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "InputStream.hxx"
#include "OggCodec.hxx"
#include "util/UriUtil.hxx"

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "WavpackDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "InputStream.hxx"
extern "C" {

View File

@@ -19,7 +19,7 @@
#include "config.h"
#include "WildmidiDecoderPlugin.hxx"
#include "decoder_api.h"
#include "DecoderAPI.hxx"
#include "tag_handler.h"
#include "glib_compat.h"

View File

@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "../decoder_api.h"
#include "../DecoderAPI.hxx"
extern "C" {
#include "tag_handler.h"