diff options
author | Max Kellermann <max@duempel.org> | 2010-11-05 17:42:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-11-05 19:18:44 +0100 |
commit | cc261872c25be3a5792be8ae160e070d1bbedf0b (patch) | |
tree | 6261d4dc29ad8c8e7b189585c4d0583f1727b664 /src/decoder_control.h | |
parent | 5223261f1907a642ebe741518b7981830c094924 (diff) | |
download | mpd-cc261872c25be3a5792be8ae160e070d1bbedf0b.tar.gz mpd-cc261872c25be3a5792be8ae160e070d1bbedf0b.tar.xz mpd-cc261872c25be3a5792be8ae160e070d1bbedf0b.zip |
decoder_control: pass music_pipe to dc_start()
More abstraction for decoder_control.pipe.
Diffstat (limited to '')
-rw-r--r-- | src/decoder_control.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder_control.h b/src/decoder_control.h index 6a04a1617..febf53335 100644 --- a/src/decoder_control.h +++ b/src/decoder_control.h @@ -118,10 +118,10 @@ void dc_command_wait(struct notify *notify); void -dc_start(struct notify *notify, struct song *song); +dc_start(struct notify *notify, struct song *song, struct music_pipe *pipe); void -dc_start_async(struct song *song); +dc_start_async(struct song *song, struct music_pipe *pipe); void dc_stop(struct notify *notify); |