diff options
author | Max Kellermann <max@duempel.org> | 2013-10-28 10:09:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-28 10:09:21 +0100 |
commit | e699f6781e144d02336856d460a74fbaf988447d (patch) | |
tree | 326e1737ef617cfb746163aec06837c7bf67e753 /src/DecoderInternal.cxx | |
parent | 5f13c1cd9c837a9dacd13e0f79032eb828296673 (diff) | |
download | mpd-e699f6781e144d02336856d460a74fbaf988447d.tar.gz mpd-e699f6781e144d02336856d460a74fbaf988447d.tar.xz mpd-e699f6781e144d02336856d460a74fbaf988447d.zip |
decoder_control: rename to DecoderControl
Diffstat (limited to '')
-rw-r--r-- | src/DecoderInternal.cxx | 6 |
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); |