aboutsummaryrefslogtreecommitdiffstats
path: root/src/crossfade.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crossfade.h')
-rw-r--r--src/crossfade.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/crossfade.h b/src/crossfade.h
index 544418e6f..918c6e97e 100644
--- a/src/crossfade.h
+++ b/src/crossfade.h
@@ -20,15 +20,16 @@
#ifndef CROSSFADE_H
#define CROSSFADE_H
-#include "audio_format.h"
#include "outputBuffer.h"
+struct audio_format;
+
unsigned cross_fade_calc(float duration, float total_time,
- const AudioFormat * af,
+ const struct audio_format *af,
unsigned max_chunks);
void cross_fade_apply(ob_chunk * a, const ob_chunk * b,
- const AudioFormat * format,
+ const struct audio_format *format,
unsigned int current_chunk, unsigned int num_chunks);
#endif