diff options
author | Max Kellermann <max@duempel.org> | 2009-03-02 16:37:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-02 16:37:05 +0100 |
commit | 78e08f655ac88bda3225cb41d85f0b1c38770be4 (patch) | |
tree | 519add596cac85026642128354acfc695e685962 /src/pcm_format.h | |
parent | d9c143429822e00da3aa8139f7cbd02807d7a645 (diff) | |
download | mpd-78e08f655ac88bda3225cb41d85f0b1c38770be4.tar.gz mpd-78e08f655ac88bda3225cb41d85f0b1c38770be4.tar.xz mpd-78e08f655ac88bda3225cb41d85f0b1c38770be4.zip |
pcm_dither: renamed struct pcm_dither_24 to struct pcm_dither
There is nothing 24 bit specific in the pcm_dither_24 struct. Since
we want to reuse the struct for 32 bit dithering, let's drop the "_24"
suffix from the struct name.
Diffstat (limited to 'src/pcm_format.h')
-rw-r--r-- | src/pcm_format.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/pcm_format.h b/src/pcm_format.h index 32279faef..53547df5d 100644 --- a/src/pcm_format.h +++ b/src/pcm_format.h @@ -23,14 +23,14 @@ #include <stddef.h> struct pcm_buffer; -struct pcm_dither_24; +struct pcm_dither; /** * Converts PCM samples to 16 bit. If the source format is 24 bit, * then dithering is applied. * * @param buffer a pcm_buffer object - * @param dither a pcm_dither_24 object for 24-to-16 conversion + * @param dither a pcm_dither object for 24-to-16 conversion * @param bits the number of in the source buffer * @param src the source PCM buffer * @param src_size the size of #src in bytes @@ -38,7 +38,7 @@ struct pcm_dither_24; * @return the destination buffer */ const int16_t * -pcm_convert_to_16(struct pcm_buffer *buffer, struct pcm_dither_24 *dither, +pcm_convert_to_16(struct pcm_buffer *buffer, struct pcm_dither *dither, uint8_t bits, const void *src, size_t src_size, size_t *dest_size_r); @@ -46,7 +46,6 @@ pcm_convert_to_16(struct pcm_buffer *buffer, struct pcm_dither_24 *dither, * Converts PCM samples to 24 bit (32 bit alignment). * * @param buffer a pcm_buffer object - * @param dither a pcm_dither_24 object for 24-to-16 conversion * @param bits the number of in the source buffer * @param src the source PCM buffer * @param src_size the size of #src in bytes |