diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 14:15:47 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 14:15:47 +0100 |
commit | 8964c69a643108a4b4828c99111517c0f6f8e3d0 (patch) | |
tree | f74d3a7af2f79393fe7471bcdc2737e3cd801bd3 /src/crossfade.h | |
parent | 767b4c95bdb468429232a96242bd73b8e92d8660 (diff) | |
download | mpd-8964c69a643108a4b4828c99111517c0f6f8e3d0.tar.gz mpd-8964c69a643108a4b4828c99111517c0f6f8e3d0.tar.xz mpd-8964c69a643108a4b4828c99111517c0f6f8e3d0.zip |
music_pipe: renamed struct output_buffer to struct music_pipe
.. and rename ob_chunk to struct music_chunk.
Diffstat (limited to 'src/crossfade.h')
-rw-r--r-- | src/crossfade.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/crossfade.h b/src/crossfade.h index 5ceb37b11..34ddcb433 100644 --- a/src/crossfade.h +++ b/src/crossfade.h @@ -20,15 +20,14 @@ #ifndef MPD_CROSSFADE_H #define MPD_CROSSFADE_H -#include "pipe.h" - struct audio_format; +struct music_chunk; unsigned cross_fade_calc(float duration, float total_time, const struct audio_format *af, unsigned max_chunks); -void cross_fade_apply(ob_chunk * a, const ob_chunk * b, +void cross_fade_apply(struct music_chunk *a, const struct music_chunk *b, const struct audio_format *format, unsigned int current_chunk, unsigned int num_chunks); |