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.
This commit is contained in:
Max Kellermann
2009-03-02 16:37:05 +01:00
parent d9c1434298
commit 78e08f655a
5 changed files with 11 additions and 12 deletions

View File

@@ -33,7 +33,7 @@ pcm_convert_8_to_16(int16_t *out, const int8_t *in,
}
static void
pcm_convert_24_to_16(struct pcm_dither_24 *dither,
pcm_convert_24_to_16(struct pcm_dither *dither,
int16_t *out, const int32_t *in,
unsigned num_samples)
{
@@ -41,7 +41,7 @@ pcm_convert_24_to_16(struct pcm_dither_24 *dither,
}
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)
{