comparison src/madplug/replaygain.h @ 2476:809736eb47d9

Some code sanitation and cleanups. Fixes some memory-access problems, but certain others still persist (will be fixed in subsequent commits.)
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 30 Mar 2008 06:29:55 +0300
parents 999098953bcd
children f1b6f1b2cdb3
comparison
equal deleted inserted replaced
2475:a5f1c47cee0c 2476:809736eb47d9
23 #include "plugin.h" 23 #include "plugin.h"
24 24
25 #ifndef __replaygain_h__ 25 #ifndef __replaygain_h__
26 #define __replaygain_h__ 26 #define __replaygain_h__
27 27
28 struct APETagFooterStruct 28 void audmad_read_replaygain(struct mad_info_t *file_info);
29 {
30 unsigned char ID[8];
31 unsigned char Version[4];
32 unsigned char Length[4];
33 unsigned char TagCount[4];
34 unsigned char Flags[4];
35 unsigned char Reserved[8];
36 };
37
38 /* prototypes */
39 void read_replaygain(struct mad_info_t *file_info);
40 29
41 #endif 30 #endif