aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_dither.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/pcm_dither.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pcm_dither.h b/src/pcm_dither.h
index 5ba4d7bb4..046dea21e 100644
--- a/src/pcm_dither.h
+++ b/src/pcm_dither.h
@@ -36,12 +36,10 @@ pcm_dither_24_init(struct pcm_dither *dither)
void
pcm_dither_24_to_16(struct pcm_dither *dither,
- int16_t *dest, const int32_t *src,
- unsigned num_samples);
+ int16_t *dest, const int32_t *src, const int32_t *src_end);
void
pcm_dither_32_to_16(struct pcm_dither *dither,
- int16_t *dest, const int32_t *src,
- unsigned num_samples);
+ int16_t *dest, const int32_t *src, const int32_t *src_end);
#endif