summaryrefslogtreecommitdiff
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 {
283#endif 283#endif
284 284
285 /* replaygain support */ 285 /* replaygain support */
286
287#if CONFIG_CODEC == SWCODEC 286#if CONFIG_CODEC == SWCODEC
288 char* track_gain_string; 287 long track_gain; /* s19.12 signed fixed point. 0 for no gain. */
289 char* album_gain_string;
290 long track_gain; /* 7.24 signed fixed point. 0 for no gain. */
291 long album_gain; 288 long album_gain;
292 long track_peak; /* 7.24 signed fixed point. 0 for no peak. */ 289 long track_peak; /* s19.12 signed fixed point. 0 for no peak. */
293 long album_peak; 290 long album_peak;
294#endif 291#endif
295 292