annotate src/audlegacy/src_flow.h @ 4887:0ddbd0025174 default tip

added libaudtag. (not used yet.)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 05 May 2010 18:26:06 +0900
parents 7bf7f83a217e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4259
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
1 /* Audacious - Cross-platform multimedia player
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
2 * Copyright (C) 2005-2008 Audacious development team
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
3 *
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
4 * This program is free software; you can redistribute it and/or modify
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
6 * the Free Software Foundation; under version 3 of the License.
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
7 *
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
8 * This program is distributed in the hope that it will be useful,
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
11 * GNU General Public License for more details.
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
12 *
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
13 * You should have received a copy of the GNU General Public License
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
14 * along with this program. If not, see <http://www.gnu.org/licenses>.
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
15 *
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
16 * The Audacious team does not consider modular code linking to
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
17 * Audacious or using our public API to be a derived work.
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
18 */
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
19
4557
2eee464379dc Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents: 4267
diff changeset
20 #ifndef AUDACIOUS_SRC_FLOW_H
2eee464379dc Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents: 4267
diff changeset
21 #define AUDACIOUS_SRC_FLOW_H
4259
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
22
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
23 #include <glib.h>
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
24 #include "flow.h"
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
25
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
26 void src_flow(FlowContext *context);
4267
a41fb6bc632a - src stuff traveled to src_flow.c
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 4259
diff changeset
27 gint src_flow_init(gint infreq, gint nch);
4259
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
28 void src_flow_free();
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
29
4557
2eee464379dc Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents: 4267
diff changeset
30 #endif /* AUDACIOUS_SRC_FLOW_H */