summaryrefslogtreecommitdiffstats
path: root/apps/metadata.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/metadata.h')
-rw-r--r--apps/metadata.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/metadata.h b/apps/metadata.h
index 8d20882835..5662c2e840 100644
--- a/apps/metadata.h
+++ b/apps/metadata.h
@@ -283,13 +283,10 @@ struct mp3entry {
#endif
/* replaygain support */
-
#if CONFIG_CODEC == SWCODEC
- char* track_gain_string;
- char* album_gain_string;
- long track_gain; /* 7.24 signed fixed point. 0 for no gain. */
+ long track_gain; /* s19.12 signed fixed point. 0 for no gain. */
long album_gain;
- long track_peak; /* 7.24 signed fixed point. 0 for no peak. */
+ long track_peak; /* s19.12 signed fixed point. 0 for no peak. */
long album_peak;
#endif