aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/decoder_api.c4
-rw-r--r--src/decoder_thread.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c
index 1c9bd822a..715a46c8d 100644
--- a/src/decoder_api.c
+++ b/src/decoder_api.c
@@ -66,7 +66,7 @@ void decoder_command_finished(mpd_unused struct decoder * decoder)
if (dc.command == DECODE_COMMAND_SEEK)
/* delete frames from the old song position */
- ob_clear();
+ music_pipe_clear();
dc.command = DECODE_COMMAND_NONE;
notify_signal(&pc.notify);
@@ -181,7 +181,7 @@ decoder_data(struct decoder *decoder,
normalizeData(data, datalen, &ob.audioFormat);
while (datalen > 0) {
- nbytes = ob_append(data, datalen, data_time, bitRate);
+ nbytes = music_pipe_append(data, datalen, data_time, bitRate);
datalen -= nbytes;
data += nbytes;
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index f45446dc2..a05783a62 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -158,7 +158,7 @@ static void decodeStart(void)
}
}
- ob_flush();
+ music_pipe_flush();
if (!ret) {
dc.error = plugin == NULL