comparison src/madplug/plugin.h @ 2392:4ad6e7dfb389

imported 5298b10777b3 by Eugene Zagidullin. - peak == 0 mean absence of gain/peak pair
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Fri, 15 Feb 2008 19:15:29 +0900
parents bd9673d8b7d5
children ed6c81bd9016
comparison
equal deleted inserted replaced
2391:7d1411f80023 2392:4ad6e7dfb389
75 struct xing xing; 75 struct xing xing;
76 Tuple *tuple; /* audacious tuple data */ 76 Tuple *tuple; /* audacious tuple data */
77 gchar *prev_title; /* used to optimize set_info calls */ 77 gchar *prev_title; /* used to optimize set_info calls */
78 78
79 /* replay parameters */ 79 /* replay parameters */
80 gboolean has_replaygain; 80 double replaygain_album_scale;
81 double replaygain_album_scale; // -1 if not set
82 double replaygain_track_scale; 81 double replaygain_track_scale;
83 gchar *replaygain_album_str; 82 gchar *replaygain_album_str;
84 gchar *replaygain_track_str; 83 gchar *replaygain_track_str;
85 double replaygain_album_peak; // -1 if not set 84 double replaygain_album_peak; /* 0 if gain/peak pair not set */
86 double replaygain_track_peak; 85 double replaygain_track_peak; /* 0 if gain/peak pair not set */
87 gchar *replaygain_album_peak_str; 86 gchar *replaygain_album_peak_str;
88 gchar *replaygain_track_peak_str; 87 gchar *replaygain_track_peak_str;
89 double mp3gain_undo; // -1 if not set 88 double mp3gain_undo; // -1 if not set
90 double mp3gain_minmax; 89 double mp3gain_minmax;
91 gchar *mp3gain_undo_str; 90 gchar *mp3gain_undo_str;