aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_control.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-23 09:20:10 +0200
committerAnton Khirnov <anton@khirnov.net>2015-02-20 08:56:03 +0100
commit1b3144727158b18f080732ff35ef1f6a123a946d (patch)
tree3cff858317d498ffb02e27364d6a2afde53943c3 /src/decoder_control.c
parente41776f458722d778b5a0db49816f775ef4f9eee (diff)
music chunk: switch to AVFrame.
Diffstat (limited to 'src/decoder_control.c')
-rw-r--r--src/decoder_control.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c
index 70f34b33..5c952d9d 100644
--- a/src/decoder_control.c
+++ b/src/decoder_control.c
@@ -94,20 +94,18 @@ dc_command_async(struct decoder_control *dc, enum decoder_command cmd)
decoder_unlock(dc);
}
-void
-dc_start(struct decoder_control *dc, struct song *song,
- unsigned start_ms, unsigned end_ms,
- struct music_buffer *buffer, struct music_pipe *pipe)
+void dc_start(struct decoder_control *dc, struct song *song,
+ unsigned start_ms, unsigned end_ms,
+ int buffer_samples, struct music_pipe *pipe)
{
assert(song != NULL);
- assert(buffer != NULL);
assert(pipe != NULL);
assert(music_pipe_empty(pipe));
dc->song = song;
dc->start_ms = start_ms;
dc->end_ms = end_ms;
- dc->buffer = buffer;
+ dc->buffer_samples = buffer_samples;
dc->pipe = pipe;
dc_command(dc, DECODE_COMMAND_START);
}