aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_format.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcm_format.c')
-rw-r--r--src/pcm_format.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pcm_format.c b/src/pcm_format.c
index 9e6f42265..16d9673d4 100644
--- a/src/pcm_format.c
+++ b/src/pcm_format.c
@@ -17,7 +17,7 @@
*/
#include "pcm_format.h"
-#include "pcm_utils.h"
+#include "pcm_dither.h"
#include <glib.h>
@@ -40,7 +40,7 @@ pcm_convert_24_to_16(struct pcm_dither_24 *dither,
}
const int16_t *
-pcm_convert_to_16(struct pcm_convert_state *convert,
+pcm_convert_to_16(struct pcm_dither_24 *dither,
uint8_t bits, const void *src,
size_t src_size, size_t *dest_size_r)
{
@@ -74,7 +74,7 @@ pcm_convert_to_16(struct pcm_convert_state *convert,
buf = g_realloc(buf, len);
}
- pcm_convert_24_to_16(&convert->dither,
+ pcm_convert_24_to_16(dither,
(int16_t *)buf,
(const int32_t *)src,
num_samples);