aboutsummaryrefslogtreecommitdiffstats
path: root/src/DecoderControl.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-28 10:09:21 +0100
committerMax Kellermann <max@duempel.org>2013-10-28 10:09:21 +0100
commite699f6781e144d02336856d460a74fbaf988447d (patch)
tree326e1737ef617cfb746163aec06837c7bf67e753 /src/DecoderControl.hxx
parent5f13c1cd9c837a9dacd13e0f79032eb828296673 (diff)
downloadmpd-e699f6781e144d02336856d460a74fbaf988447d.tar.gz
mpd-e699f6781e144d02336856d460a74fbaf988447d.tar.xz
mpd-e699f6781e144d02336856d460a74fbaf988447d.zip
decoder_control: rename to DecoderControl
Diffstat (limited to 'src/DecoderControl.hxx')
-rw-r--r--src/DecoderControl.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/DecoderControl.hxx b/src/DecoderControl.hxx
index 9a949b2fe..4b3137108 100644
--- a/src/DecoderControl.hxx
+++ b/src/DecoderControl.hxx
@@ -54,7 +54,7 @@ enum class DecoderState : uint8_t {
ERROR,
};
-struct decoder_control {
+struct DecoderControl {
/**
* The handle of the decoder thread.
*/
@@ -143,8 +143,8 @@ struct decoder_control {
MixRampInfo mix_ramp, previous_mix_ramp;
- decoder_control();
- ~decoder_control();
+ DecoderControl();
+ ~DecoderControl();
/**
* Locks the object.
@@ -170,7 +170,7 @@ struct decoder_control {
}
/**
- * Waits for a signal on the #decoder_control object. This function
+ * Waits for a signal on the #DecoderControl object. This function
* is only valid in the decoder thread. The object must be locked
* prior to calling this function.
*/
@@ -336,8 +336,8 @@ public:
*
* @param song the song to be decoded; the given instance will be
* owned and freed by the decoder
- * @param start_ms see #decoder_control
- * @param end_ms see #decoder_control
+ * @param start_ms see #DecoderControl
+ * @param end_ms see #DecoderControl
* @param pipe the pipe which receives the decoded chunks (owned by
* the caller)
*/