diff options
author | Max Kellermann <max@duempel.org> | 2015-03-17 11:21:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-03-17 11:21:43 +0100 |
commit | b31d171ae87dabe8026934c60b1a1195dddd32a2 (patch) | |
tree | a2ccb96a730049950f1f94df22b9147220dd16fc /src/MusicChunk.hxx | |
parent | 085f06594c38333536040d19eec21240cf98b12c (diff) | |
download | mpd-b31d171ae87dabe8026934c60b1a1195dddd32a2.tar.gz mpd-b31d171ae87dabe8026934c60b1a1195dddd32a2.tar.xz mpd-b31d171ae87dabe8026934c60b1a1195dddd32a2.zip |
*: doxygen fixups
Diffstat (limited to 'src/MusicChunk.hxx')
-rw-r--r-- | src/MusicChunk.hxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/MusicChunk.hxx b/src/MusicChunk.hxx index 9d7fda146..0f750f049 100644 --- a/src/MusicChunk.hxx +++ b/src/MusicChunk.hxx @@ -119,13 +119,10 @@ struct MusicChunk { * where you may write into. After you are finished, call * Expand(). * - * @param chunk the MusicChunk object - * @param audio_format the audio format for the appended data; + * @param af the audio format for the appended data; * must stay the same for the life cycle of this chunk * @param data_time the time within the song * @param bit_rate the current bit rate of the source file - * @param max_length_r the maximum write length is returned - * here * @return a writable buffer, or nullptr if the chunk is full */ WritableBuffer<void> Write(AudioFormat af, @@ -136,8 +133,7 @@ struct MusicChunk { * Increases the length of the chunk after the caller has written to * the buffer returned by Write(). * - * @param chunk the MusicChunk object - * @param audio_format the audio format for the appended data; must + * @param af the audio format for the appended data; must * stay the same for the life cycle of this chunk * @param length the number of bytes which were appended * @return true if the chunk is full |