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:
@@ -20,7 +20,7 @@
|
||||
#include "pcm_prng.h"
|
||||
|
||||
static int16_t
|
||||
pcm_dither_sample_24_to_16(int32_t sample, struct pcm_dither_24 *dither)
|
||||
pcm_dither_sample_24_to_16(int32_t sample, struct pcm_dither *dither)
|
||||
{
|
||||
int32_t output, rnd;
|
||||
|
||||
@@ -69,7 +69,7 @@ pcm_dither_sample_24_to_16(int32_t sample, struct pcm_dither_24 *dither)
|
||||
}
|
||||
|
||||
void
|
||||
pcm_dither_24_to_16(struct pcm_dither_24 *dither,
|
||||
pcm_dither_24_to_16(struct pcm_dither *dither,
|
||||
int16_t *dest, const int32_t *src,
|
||||
unsigned num_samples)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user