annotate src/audacious/src_flow.h @ 4259:92642f860860

- added template for src_flow - vis_flow can work now with FMT_FLOAT, but disabled pending src stuff refactoring
author Eugene Zagidullin <e.asphyx@gmail.com>
date Sat, 09 Feb 2008 01:05:36 +0300
parents
children a41fb6bc632a
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
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
20 #ifndef SRC_FLOW_H
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
21 #define SRC_FLOW_H
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);
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
27 void src_flow_init(gint infreq, gint outfreq);
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
92642f860860 - added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
30 #endif