Mercurial > audlegacy
annotate src/audacious/input.h @ 2541:c399c0979e09 trunk
[svn] - put configdb back in libaudacious as the client library needs it
author | nenolod |
---|---|
date | Sat, 17 Feb 2007 02:32:37 -0800 |
parents | f346d30bf5ab |
children | b3ca1bfcae6c |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Based on BMP: | |
5 * Copyright (C) 2003-2004 BMP development team | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; under version 2 of the License. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #ifndef INPUT_H | |
25 #define INPUT_H | |
26 | |
27 #include "plugin.h" | |
28 | |
29 typedef struct _InputPluginData InputPluginData; | |
30 | |
31 struct _InputPluginData { | |
32 GList *input_list; | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
33 InputPlayback *current_input_playback; |
2313 | 34 gboolean playing; |
35 gboolean paused; | |
36 gboolean stop; | |
37 gboolean buffering; | |
38 GMutex *playback_mutex; | |
39 }; | |
40 | |
41 GList *get_input_list(void); | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
42 InputPlayback *get_current_input_playback(void); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
43 void set_current_input_playback(InputPlayback * ip); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2313
diff
changeset
|
44 void set_current_input_data(void * data); |
2313 | 45 InputVisType input_get_vis_type(); |
46 void free_vis_data(void); | |
47 InputPlugin *input_check_file(const gchar * filename, gboolean show_warning); | |
48 TitleInput *input_get_song_tuple(const gchar * filename); | |
49 void input_play(gchar * filename); | |
50 void input_stop(void); | |
51 void input_pause(void); | |
52 gint input_get_time(void); | |
53 void input_set_eq(gint on, gfloat preamp, gfloat * bands); | |
54 void input_seek(gint time); | |
55 void input_get_song_info(const gchar * filename, gchar ** title, | |
56 gint * length); | |
57 guchar *input_get_vis(gint time); | |
58 void input_update_vis_plugin(gint time); | |
59 gchar *input_get_info_text(void); | |
60 void input_about(gint index); | |
61 void input_configure(gint index); | |
62 void input_add_vis(gint time, guchar * s, InputVisType type); | |
63 void input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, | |
64 gpointer ptr); | |
65 InputVisType input_get_vis_type(); | |
66 void input_update_vis(gint time); | |
67 | |
68 void input_set_info_text(const gchar * text); | |
69 void input_set_status_buffering(gboolean status); | |
70 | |
71 GList *input_scan_dir(const gchar * dir); | |
72 void input_get_volume(gint * l, gint * r); | |
73 void input_set_volume(gint l, gint r); | |
74 void input_file_info_box(const gchar * filename); | |
75 | |
76 void input_file_not_playable(const gchar * filename); | |
77 gboolean input_is_disabled(const gchar * filename); | |
78 gboolean input_is_enabled(const gchar * filename); | |
79 gchar *input_stringify_disabled_list(void); | |
80 | |
81 extern InputPluginData ip_data; | |
82 extern gchar *input_info_text; | |
83 | |
84 | |
85 #endif |