diff options
author | Max Kellermann <max@duempel.org> | 2013-01-04 10:16:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-04 10:16:16 +0100 |
commit | 22f0a1547c86895b4284b5fdc63ab9c82f24a442 (patch) | |
tree | c011204fc1e1a31745e004a3e25d7f9f24f1067e /src | |
parent | de0ab43bc12be345d85779e444266153ff5be007 (diff) | |
download | mpd-22f0a1547c86895b4284b5fdc63ab9c82f24a442.tar.gz mpd-22f0a1547c86895b4284b5fdc63ab9c82f24a442.tar.xz mpd-22f0a1547c86895b4284b5fdc63ab9c82f24a442.zip |
buffer, pipe: convert to C++
Diffstat (limited to 'src')
-rw-r--r-- | src/DecoderAPI.cxx | 6 | ||||
-rw-r--r-- | src/DecoderControl.cxx | 5 | ||||
-rw-r--r-- | src/DecoderInternal.cxx | 9 | ||||
-rw-r--r-- | src/Main.cxx | 2 | ||||
-rw-r--r-- | src/MusicBuffer.cxx (renamed from src/buffer.c) | 6 | ||||
-rw-r--r-- | src/MusicBuffer.hxx (renamed from src/buffer.h) | 6 | ||||
-rw-r--r-- | src/MusicChunk.cxx (renamed from src/chunk.c) | 7 | ||||
-rw-r--r-- | src/MusicChunk.hxx (renamed from src/chunk.h) | 7 | ||||
-rw-r--r-- | src/MusicPipe.cxx (renamed from src/pipe.c) | 8 | ||||
-rw-r--r-- | src/MusicPipe.hxx (renamed from src/pipe.h) | 2 | ||||
-rw-r--r-- | src/OutputAll.cxx | 10 | ||||
-rw-r--r-- | src/OutputThread.cxx | 5 | ||||
-rw-r--r-- | src/PlayerThread.cxx | 6 | ||||
-rw-r--r-- | src/crossfade.c | 2 |
14 files changed, 36 insertions, 45 deletions
diff --git a/src/DecoderAPI.cxx b/src/DecoderAPI.cxx index 738e71842..015d64d2b 100644 --- a/src/DecoderAPI.cxx +++ b/src/DecoderAPI.cxx @@ -22,12 +22,12 @@ extern "C" { #include "decoder_api.h" #include "audio_config.h" -#include "buffer.h" -#include "pipe.h" -#include "chunk.h" #include "replay_gain_config.h" } +#include "MusicChunk.hxx" +#include "MusicBuffer.hxx" +#include "MusicPipe.hxx" #include "DecoderControl.hxx" #include "DecoderInternal.hxx" #include "song.h" diff --git a/src/DecoderControl.cxx b/src/DecoderControl.cxx index bd075ed71..58d109483 100644 --- a/src/DecoderControl.cxx +++ b/src/DecoderControl.cxx @@ -19,12 +19,9 @@ #include "config.h" #include "DecoderControl.hxx" +#include "MusicPipe.hxx" #include "song.h" -extern "C" { -#include "pipe.h" -} - #include <assert.h> #undef G_LOG_DOMAIN diff --git a/src/DecoderInternal.cxx b/src/DecoderInternal.cxx index ab496dbd3..00749b899 100644 --- a/src/DecoderInternal.cxx +++ b/src/DecoderInternal.cxx @@ -20,14 +20,11 @@ #include "config.h" #include "DecoderInternal.hxx" #include "DecoderControl.hxx" - -extern "C" { -#include "pipe.h" -#include "buffer.h" -} +#include "MusicPipe.hxx" +#include "MusicBuffer.hxx" +#include "MusicChunk.hxx" #include "input_stream.h" -#include "chunk.h" #include <assert.h> diff --git a/src/Main.cxx b/src/Main.cxx index 1974a6103..2da1ca693 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -22,7 +22,7 @@ #include "CommandLine.hxx" #include "PlaylistFile.hxx" #include "UpdateGlue.hxx" -#include "chunk.h" +#include "MusicChunk.hxx" #include "StateFile.hxx" #include "PlayerThread.hxx" #include "Mapper.hxx" diff --git a/src/buffer.c b/src/MusicBuffer.cxx index 559f39a9a..f1547f1f4 100644 --- a/src/buffer.c +++ b/src/MusicBuffer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,8 +18,8 @@ */ #include "config.h" -#include "buffer.h" -#include "chunk.h" +#include "MusicBuffer.hxx" +#include "MusicChunk.hxx" #include "poison.h" #include <glib.h> diff --git a/src/buffer.h b/src/MusicBuffer.hxx index f860231e7..cc03dfcb3 100644 --- a/src/buffer.h +++ b/src/MusicBuffer.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,8 +17,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_MUSIC_BUFFER_H -#define MPD_MUSIC_BUFFER_H +#ifndef MPD_MUSIC_BUFFER_HXX +#define MPD_MUSIC_BUFFER_HXX /** * An allocator for #music_chunk objects. diff --git a/src/chunk.c b/src/MusicChunk.cxx index 1eb96f4b9..24f21f664 100644 --- a/src/chunk.c +++ b/src/MusicChunk.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,9 +18,12 @@ */ #include "config.h" -#include "chunk.h" +#include "MusicChunk.hxx" #include "audio_format.h" + +extern "C" { #include "tag.h" +} #include <assert.h> diff --git a/src/chunk.h b/src/MusicChunk.hxx index a06a203eb..0ed720064 100644 --- a/src/chunk.h +++ b/src/MusicChunk.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,8 +17,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_CHUNK_H -#define MPD_CHUNK_H +#ifndef MPD_MUSIC_CHUNK_HXX +#define MPD_MUSIC_CHUNK_HXX #include "replay_gain_info.h" @@ -26,7 +26,6 @@ #include "audio_format.h" #endif -#include <stdbool.h> #include <stdint.h> #include <stddef.h> diff --git a/src/pipe.c b/src/MusicPipe.cxx index d8131432f..d9fc07eca 100644 --- a/src/pipe.c +++ b/src/MusicPipe.cxx @@ -18,9 +18,9 @@ */ #include "config.h" -#include "pipe.h" -#include "buffer.h" -#include "chunk.h" +#include "MusicPipe.hxx" +#include "MusicBuffer.hxx" +#include "MusicChunk.hxx" #include <glib.h> @@ -137,7 +137,7 @@ music_pipe_shift(struct music_pipe *mp) #ifndef NDEBUG /* poison the "next" reference */ - chunk->next = (void*)0x01010101; + chunk->next = (struct music_chunk *)(void *)0x01010101; if (mp->size == 0) audio_format_clear(&mp->audio_format); diff --git a/src/pipe.h b/src/MusicPipe.hxx index 6b5bbf0c7..99561ca62 100644 --- a/src/pipe.h +++ b/src/MusicPipe.hxx @@ -22,8 +22,6 @@ #include "gcc.h" -#include <stdbool.h> - #ifndef NDEBUG struct audio_format; #endif diff --git a/src/OutputAll.cxx b/src/OutputAll.cxx index ec716a411..811d93a12 100644 --- a/src/OutputAll.cxx +++ b/src/OutputAll.cxx @@ -26,21 +26,17 @@ extern "C" { #include "OutputControl.hxx" #include "OutputError.hxx" +#include "MusicBuffer.hxx" +#include "MusicPipe.hxx" +#include "MusicChunk.hxx" #include "mpd_error.h" extern "C" { #include "player_control.h" #include "conf.h" -#include "chunk.h" -#include "pipe.h" -#include "buffer.h" #include "notify.h" } -#ifndef NDEBUG -#include "chunk.h" -#endif - #include <assert.h> #include <string.h> diff --git a/src/OutputThread.cxx b/src/OutputThread.cxx index 75394703b..e88efd389 100644 --- a/src/OutputThread.cxx +++ b/src/OutputThread.cxx @@ -23,8 +23,6 @@ extern "C" { #include "output_api.h" #include "output_internal.h" -#include "chunk.h" -#include "pipe.h" #include "player_control.h" #include "pcm_mix.h" #include "filter_plugin.h" @@ -33,6 +31,9 @@ extern "C" { #include "notify.h" } +#include "MusicPipe.hxx" +#include "MusicChunk.hxx" + #include "mpd_error.h" #include "gcc.h" diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx index 9e5c6042b..cb641bbfb 100644 --- a/src/PlayerThread.cxx +++ b/src/PlayerThread.cxx @@ -21,6 +21,9 @@ #include "PlayerThread.hxx" #include "DecoderThread.hxx" #include "DecoderControl.hxx" +#include "MusicPipe.hxx" +#include "MusicBuffer.hxx" +#include "MusicChunk.hxx" #include "song.h" #include "Main.hxx" #include "mpd_error.h" @@ -31,10 +34,7 @@ extern "C" { #include "event_pipe.h" #include "crossfade.h" #include "tag.h" -#include "pipe.h" -#include "chunk.h" #include "idle.h" -#include "buffer.h" } #include <glib.h> diff --git a/src/crossfade.c b/src/crossfade.c index 46a0dff30..cf3943314 100644 --- a/src/crossfade.c +++ b/src/crossfade.c @@ -19,7 +19,7 @@ #include "config.h" #include "crossfade.h" -#include "chunk.h" +#include "MusicChunk.hxx" #include "audio_format.h" #include "tag.h" |