aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/decoder_control.c10
-rw-r--r--src/decoder_control.h3
2 files changed, 0 insertions, 13 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c
index 9844b6918..b3092f773 100644
--- a/src/decoder_control.c
+++ b/src/decoder_control.c
@@ -94,16 +94,6 @@ dc_start(struct decoder_control *dc, struct song *song)
}
void
-dc_start_async(struct decoder_control *dc, struct song *song)
-{
- assert(dc->pipe != NULL);
- assert(song != NULL);
-
- dc->next_song = song;
- dc_command_async(dc, DECODE_COMMAND_START);
-}
-
-void
dc_stop(struct decoder_control *dc)
{
decoder_lock(dc);
diff --git a/src/decoder_control.h b/src/decoder_control.h
index a4a6e266c..f3bd26d53 100644
--- a/src/decoder_control.h
+++ b/src/decoder_control.h
@@ -212,9 +212,6 @@ void
dc_start(struct decoder_control *dc, struct song *song);
void
-dc_start_async(struct decoder_control *dc, struct song *song);
-
-void
dc_stop(struct decoder_control *dc);
bool