diff src/madplug/xing.c @ 2341:59addab003d7

- reworked replaygain to use individual pre-gain for the files with RG info and the rest. - default pre-gain have been changed to +6dB for with RG, +0dB for the rest. - new clipping prevention feature using track peak information has been implemented. - reworked preferences dialog. widgets have been categorized by function and all changes will take effect immediately. and also, cancel button can reverts all changes have been done in the current session. - some keys in preferences have been changed.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Thu, 31 Jan 2008 15:22:15 +0900
parents e46b98155d5d
children 1505a1e40090
line wrap: on
line diff
--- a/src/madplug/xing.c	Wed Jan 30 05:04:15 2008 +0300
+++ b/src/madplug/xing.c	Thu Jan 31 15:22:15 2008 +0900
@@ -29,7 +29,8 @@
  * NAME:	xing->init()
  * DESCRIPTION:	initialize Xing structure
  */
-void xing_init(struct xing *xing)
+void
+xing_init(struct xing *xing)
 {
     xing->flags = 0;
     xing->frames = 0;
@@ -42,7 +43,8 @@
  * NAME:	xing->parse()
  * DESCRIPTION:	parse a Xing VBR header
  */
-int xing_parse(struct xing *xing, struct mad_bitptr ptr,
+int
+xing_parse(struct xing *xing, struct mad_bitptr ptr,
                unsigned int bitlen)
 {
     if (bitlen < 64 || mad_bit_read(&ptr, 32) != XING_MAGIC)