aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-02 14:18:34 +0100
committerMax Kellermann <max@duempel.org>2008-11-02 14:18:34 +0100
commitfd0f195bb778db55d900c5225fac4d89b1a16af5 (patch)
treede79045b3196d55916b9a5c868c00b44a5d78b05 /src/main.c
parent8964c69a643108a4b4828c99111517c0f6f8e3d0 (diff)
downloadmpd-fd0f195bb778db55d900c5225fac4d89b1a16af5.tar.gz
mpd-fd0f195bb778db55d900c5225fac4d89b1a16af5.tar.xz
mpd-fd0f195bb778db55d900c5225fac4d89b1a16af5.zip
music_pipe: renamed ob_* functions to music_pipe_*
Rename all functions to the new prefix.
Diffstat (limited to '')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 5b50b135d..325254b62 100644
--- a/src/main.c
+++ b/src/main.c
@@ -424,7 +424,7 @@ int main(int argc, char *argv[])
command_init();
initPlayerData();
pc_init(buffered_before_play);
- ob_init(buffered_chunks, &pc.notify);
+ music_pipe_init(buffered_chunks, &pc.notify);
dc_init();
initAudioConfig();
initAudioDriver();
@@ -488,7 +488,7 @@ int main(int argc, char *argv[])
pc_deinit();
command_finish();
decoder_plugin_deinit_all();
- ob_free();
+ music_pipe_free();
cleanUpPidFile();
finishConf();