diff options
-rw-r--r-- | src/pipe.c | 30 | ||||
-rw-r--r-- | src/pipe.h | 9 |
2 files changed, 0 insertions, 39 deletions
diff --git a/src/pipe.c b/src/pipe.c index b2680e37c..c681ab2c9 100644 --- a/src/pipe.c +++ b/src/pipe.c @@ -252,36 +252,6 @@ music_pipe_expand(const struct audio_format *audio_format, size_t length) music_pipe_flush(); } -size_t music_pipe_append(const void *data0, size_t datalen, - const struct audio_format *audio_format, - float data_time, uint16_t bit_rate) -{ - const unsigned char *data = data0; - size_t ret = 0, nbytes; - void *dest; - - while (datalen) { - dest = music_pipe_write(audio_format, data_time, bit_rate, - &nbytes); - if (dest == NULL) - break; - - assert(nbytes > 0); - - if (nbytes > datalen) - nbytes = datalen; - - memcpy(dest, data, nbytes); - music_pipe_expand(audio_format, nbytes); - - datalen -= nbytes; - data += nbytes; - ret += nbytes; - } - - return ret; -} - bool music_pipe_tag(const struct tag *tag) { struct music_chunk *chunk; diff --git a/src/pipe.h b/src/pipe.h index 526bedb26..3bb627ae7 100644 --- a/src/pipe.h +++ b/src/pipe.h @@ -166,15 +166,6 @@ void music_pipe_expand(const struct audio_format *audio_format, size_t length); /** - * Append a data block to the buffer. - * - * @return the number of bytes actually written - */ -size_t music_pipe_append(const void *data, size_t datalen, - const struct audio_format *audio_format, - float data_time, uint16_t bit_rate); - -/** * Send a tag. This is usually called when a new song within a stream * begins. */ |