comparison src/madplug/replaygain.h @ 610:862190d39e00 trunk

[svn] - add madplug. It is not yet hooked up, I'll do that later.
author nenolod
date Mon, 05 Feb 2007 12:28:01 -0800
parents
children 22c82f3c0411
comparison
equal deleted inserted replaced
609:9b73eb35f4ff 610:862190d39e00
1 /*
2 * mad plugin for audacious
3 * Copyright (C) 2005-2007 William Pitcock, Yoshiki Yazawa
4 *
5 * Portions derived from xmms-mad:
6 * Copyright (C) 2001-2002 Sam Clegg - See COPYING
7 * Copyright (C) 2001-2007 Samuel Krempp
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; under version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23 #include "plugin.h"
24 #include "stdlib.h"
25 #include "math.h"
26 #include "ctype.h"
27
28 #ifndef __replaygain_h__
29 #define __replaygain_h__
30
31 struct APETagFooterStruct
32 {
33 unsigned char ID[8];
34 unsigned char Version[4];
35 unsigned char Length[4];
36 unsigned char TagCount[4];
37 unsigned char Flags[4];
38 unsigned char Reserved[8];
39 };
40
41 /* prototypes */
42 void input_read_replaygain(struct mad_info_t *file_info);
43
44 #endif