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/pcm/PcmFormat.hxx | |
parent | 085f06594c38333536040d19eec21240cf98b12c (diff) | |
download | mpd-b31d171ae87dabe8026934c60b1a1195dddd32a2.tar.gz mpd-b31d171ae87dabe8026934c60b1a1195dddd32a2.tar.xz mpd-b31d171ae87dabe8026934c60b1a1195dddd32a2.zip |
*: doxygen fixups
Diffstat (limited to 'src/pcm/PcmFormat.hxx')
-rw-r--r-- | src/pcm/PcmFormat.hxx | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/pcm/PcmFormat.hxx b/src/pcm/PcmFormat.hxx index cc6db2c8d..9d15011a7 100644 --- a/src/pcm/PcmFormat.hxx +++ b/src/pcm/PcmFormat.hxx @@ -33,9 +33,8 @@ class PcmDither; * Converts PCM samples to 16 bit. If the source format is 24 bit, * then dithering is applied. * - * @param buffer a PcmBuffer object - * @param dither a pcm_dither object for 24-to-16 conversion - * @param bits the number of in the source buffer + * @param buffer a #PcmBuffer object + * @param dither a #PcmDither object for 24-to-16 conversion * @param src the source PCM buffer * @return the destination buffer */ @@ -47,8 +46,7 @@ pcm_convert_to_16(PcmBuffer &buffer, PcmDither &dither, /** * Converts PCM samples to 24 bit (32 bit alignment). * - * @param buffer a PcmBuffer object - * @param bits the number of in the source buffer + * @param buffer a #PcmBuffer object * @param src the source PCM buffer * @return the destination buffer */ @@ -60,8 +58,7 @@ pcm_convert_to_24(PcmBuffer &buffer, /** * Converts PCM samples to 32 bit. * - * @param buffer a PcmBuffer object - * @param bits the number of in the source buffer + * @param buffer a #PcmBuffer object * @param src the source PCM buffer * @return the destination buffer */ @@ -73,11 +70,8 @@ pcm_convert_to_32(PcmBuffer &buffer, /** * Converts PCM samples to 32 bit floating point. * - * @param buffer a PcmBuffer object - * @param bits the number of in the source buffer + * @param buffer a #PcmBuffer object * @param src the source PCM buffer - * @param src_size the size of #src in bytes - * @param dest_size_r returns the number of bytes of the destination buffer * @return the destination buffer */ gcc_pure |