aboutsummaryrefslogtreecommitdiffstats
path: root/src/replayGain.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/replayGain.h')
-rw-r--r--src/replayGain.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/replayGain.h b/src/replayGain.h
index 8282da785..8b634cad6 100644
--- a/src/replayGain.h
+++ b/src/replayGain.h
@@ -20,12 +20,12 @@
#ifndef REPLAYGAIN_H
#define REPLAYGAIN_H
-#include "audio_format.h"
-
#define REPLAYGAIN_OFF 0
#define REPLAYGAIN_TRACK 1
#define REPLAYGAIN_ALBUM 2
+struct audio_format;
+
extern int replayGainState;
typedef struct _ReplayGainInfo {
@@ -45,6 +45,6 @@ void freeReplayGainInfo(ReplayGainInfo * info);
void initReplayGainState(void);
void doReplayGain(ReplayGainInfo * info, char *buffer, int bufferSize,
- const AudioFormat * format);
+ const struct audio_format *format);
#endif