diff options
Diffstat (limited to 'apps/replaygain.h')
-rw-r--r-- | apps/replaygain.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/replaygain.h b/apps/replaygain.h index 02ca2e0bae..4fb5476e23 100644 --- a/apps/replaygain.h +++ b/apps/replaygain.h @@ -25,9 +25,11 @@ #include "metadata.h" long get_replaygain_int(long int_gain); -long parse_replaygain(const char* key, const char* value, - struct mp3entry* entry, char* buffer, int length); -long parse_replaygain_int(bool album, long gain, long peak, - struct mp3entry* entry, char* buffer, int length); +void parse_replaygain(const char* key, const char* value, + struct mp3entry* entry); +void parse_replaygain_int(bool album, long gain, long peak, + struct mp3entry* entry); +void replaygain_itoa(char* buffer, int length, long int_gain); +long convert_gain(long gain); #endif |