aboutsummaryrefslogtreecommitdiffstats
path: root/src/DecoderInternal.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/DecoderInternal.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DecoderInternal.cxx b/src/DecoderInternal.cxx
index c3ce6d433..92fa7c451 100644
--- a/src/DecoderInternal.cxx
+++ b/src/DecoderInternal.cxx
@@ -42,7 +42,7 @@ Decoder::~Decoder()
* one.
*/
static DecoderCommand
-need_chunks(decoder_control &dc, bool do_wait)
+need_chunks(DecoderControl &dc, bool do_wait)
{
if (dc.command == DecoderCommand::STOP ||
dc.command == DecoderCommand::SEEK)
@@ -61,7 +61,7 @@ need_chunks(decoder_control &dc, bool do_wait)
struct music_chunk *
decoder_get_chunk(Decoder &decoder)
{
- decoder_control &dc = decoder.dc;
+ DecoderControl &dc = decoder.dc;
DecoderCommand cmd;
if (decoder.chunk != nullptr)
@@ -90,7 +90,7 @@ decoder_get_chunk(Decoder &decoder)
void
decoder_flush_chunk(Decoder &decoder)
{
- decoder_control &dc = decoder.dc;
+ DecoderControl &dc = decoder.dc;
assert(decoder.chunk != nullptr);