diff options
author | Max Kellermann <max@duempel.org> | 2013-01-21 10:13:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-21 10:13:29 +0100 |
commit | 32799fef5c60568ffc693edab2e39d50549040d4 (patch) | |
tree | e19d45b501b98daed8665fe71628839d4bbfc391 /src/DecoderAPI.cxx | |
parent | e1b03b4a716dbb35a737d34fba531e623f7980f3 (diff) | |
download | mpd-32799fef5c60568ffc693edab2e39d50549040d4.tar.gz mpd-32799fef5c60568ffc693edab2e39d50549040d4.tar.xz mpd-32799fef5c60568ffc693edab2e39d50549040d4.zip |
DecoderControl: move functions into the class
Diffstat (limited to 'src/DecoderAPI.cxx')
-rw-r--r-- | src/DecoderAPI.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/DecoderAPI.cxx b/src/DecoderAPI.cxx index 49ebacd49..0e127ec02 100644 --- a/src/DecoderAPI.cxx +++ b/src/DecoderAPI.cxx @@ -64,10 +64,10 @@ decoder_initialized(struct decoder *decoder, dc->seekable = seekable; dc->total_time = total_time; - decoder_lock(dc); + dc->Lock(); dc->state = DECODE_STATE_DECODE; g_cond_signal(dc->client_cond); - decoder_unlock(dc); + dc->Unlock(); g_debug("audio_format=%s, seekable=%s", audio_format_to_string(&dc->in_audio_format, &af_string), @@ -155,7 +155,7 @@ decoder_command_finished(struct decoder *decoder) { struct decoder_control *dc = decoder->dc; - decoder_lock(dc); + dc->Lock(); assert(dc->command != DECODE_COMMAND_NONE || decoder->initial_seek_running); @@ -171,7 +171,7 @@ decoder_command_finished(struct decoder *decoder) decoder->initial_seek_running = false; decoder->timestamp = dc->start_ms / 1000.; - decoder_unlock(dc); + dc->Unlock(); return; } @@ -192,7 +192,7 @@ decoder_command_finished(struct decoder *decoder) dc->command = DECODE_COMMAND_NONE; g_cond_signal(dc->client_cond); - decoder_unlock(dc); + dc->Unlock(); } double decoder_seek_where(G_GNUC_UNUSED struct decoder * decoder) @@ -377,9 +377,9 @@ decoder_data(struct decoder *decoder, assert(dc->pipe != NULL); assert(length % audio_format_frame_size(&dc->in_audio_format) == 0); - decoder_lock(dc); + dc->Lock(); cmd = decoder_get_virtual_command(decoder); - decoder_unlock(dc); + dc->Unlock(); if (cmd == DECODE_COMMAND_STOP || cmd == DECODE_COMMAND_SEEK || length == 0) @@ -564,6 +564,6 @@ decoder_mixramp(struct decoder *decoder, struct decoder_control *dc = decoder->dc; assert(dc != NULL); - dc_mixramp_start(dc, mixramp_start); - dc_mixramp_end(dc, mixramp_end); + dc->MixRampStart(mixramp_start); + dc->MixRampEnd(mixramp_end); } |