Commit 767b4c95 authored by Max Kellermann's avatar Max Kellermann

renamed outputBuffer.[ch] to pipe.[ch]

No CamelCase in the file name. The output_buffer struct is going to be renamed to music_pipe. There are so many buffer levels in MPD, and calling this one "output buffer" is wrong, because it's not the last buffer before the music reaches the output devices.
parent b48ae8c2
......@@ -45,7 +45,7 @@ mpd_headers = \
normalize.h \
compress.h \
os_compat.h \
outputBuffer.h \
pipe.h \
path.h \
mapper.h \
pcm_utils.h \
......@@ -124,7 +124,7 @@ mpd_SOURCES = \
main_notify.c \
normalize.c \
compress.c \
outputBuffer.c \
pipe.c \
path.c \
mapper.c \
pcm_utils.c \
......
......@@ -20,7 +20,7 @@
#ifndef MPD_CROSSFADE_H
#define MPD_CROSSFADE_H
#include "outputBuffer.h"
#include "pipe.h"
struct audio_format;
......
......@@ -25,7 +25,7 @@
#include "utils.h"
#include "normalize.h"
#include "outputBuffer.h"
#include "pipe.h"
#include "gcc.h"
#include <assert.h>
......
......@@ -21,7 +21,7 @@
#include "decoder_control.h"
#include "decoder_internal.h"
#include "player_control.h"
#include "outputBuffer.h"
#include "pipe.h"
#include "song.h"
#include "mapper.h"
#include "path.h"
......
......@@ -28,7 +28,7 @@
#include "path.h"
#include "mapper.h"
#include "playerData.h"
#include "outputBuffer.h"
#include "pipe.h"
#include "decoder_thread.h"
#include "decoder_control.h"
#include "player_control.h"
......
......@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "outputBuffer.h"
#include "pipe.h"
#include "notify.h"
#include "utils.h"
......
......@@ -16,8 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef MPD_OUTPUT_BUFFER_H
#define MPD_OUTPUT_BUFFER_H
#ifndef MPD_PIPE_H
#define MPD_PIPE_H
#include "audio_format.h"
......
......@@ -17,7 +17,7 @@
*/
#include "playerData.h"
#include "outputBuffer.h"
#include "pipe.h"
#include "conf.h"
#include "log.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