From e699f6781e144d02336856d460a74fbaf988447d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 28 Oct 2013 10:09:21 +0100 Subject: decoder_control: rename to DecoderControl --- src/DecoderInternal.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/DecoderInternal.cxx') 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); -- cgit v1.2.3