aboutsummaryrefslogtreecommitdiff
path: root/src/replay_gain.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-11 15:55:34 +0100
committerMax Kellermann <max@duempel.org>2008-11-11 15:55:34 +0100
commit114b3c1e78433ff3760a28641d6da3925ef8d3ce (patch)
treef92bc79eda01492741cf37a824d922c10758c1a2 /src/replay_gain.h
parent54ad08ab378f9e988cc8289c0923e50047805b1f (diff)
replay_gain: no CamelCase
Renamed functions and variables.
Diffstat (limited to 'src/replay_gain.h')
-rw-r--r--src/replay_gain.h34
1 files changed, 18 insertions, 16 deletions
diff --git a/src/replay_gain.h b/src/replay_gain.h
index f1c24e1c..9dae1fb1 100644
--- a/src/replay_gain.h
+++ b/src/replay_gain.h
@@ -17,34 +17,36 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef MPD_REPLAYGAIN_H
-#define MPD_REPLAYGAIN_H
+#ifndef MPD_REPLAY_GAIN_H
+#define MPD_REPLAY_GAIN_H
-#define REPLAYGAIN_OFF 0
-#define REPLAYGAIN_TRACK 1
-#define REPLAYGAIN_ALBUM 2
+#define REPLAY_GAIN_OFF 0
+#define REPLAY_GAIN_TRACK 1
+#define REPLAY_GAIN_ALBUM 2
struct audio_format;
-extern int replayGainState;
+extern int replay_gain_mode;
-typedef struct _ReplayGainInfo {
- float albumGain;
- float albumPeak;
- float trackGain;
- float trackPeak;
+struct replay_gain_info {
+ float album_gain;
+ float album_peak;
+ float track_gain;
+ float track_peak;
/* used internally by mpd, to mess with it */
float scale;
-} ReplayGainInfo;
+};
-ReplayGainInfo *newReplayGainInfo(void);
+struct replay_gain_info *
+replay_gain_info_new(void);
-void freeReplayGainInfo(ReplayGainInfo * info);
+void replay_gain_info_free(struct replay_gain_info *info);
-void initReplayGainState(void);
+void replay_gain_global_init(void);
-void doReplayGain(ReplayGainInfo * info, char *buffer, int bufferSize,
+void
+replay_gain_apply(struct replay_gain_info *info, char *buffer, int bufferSize,
const struct audio_format *format);
#endif