Mercurial > audlegacy
annotate src/audacious/input.h @ 3123:f1c756f39e6c trunk audacious-1.4.0-DR1
Invoke "Plugins are not derived work" clause provided by GPL3.
| author | William Pitcock <nenolod@atheme-project.org> |
|---|---|
| date | Fri, 20 Jul 2007 09:09:58 -0500 |
| parents | 3b6d316f8b09 |
| children | c92070f10148 |
| 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 | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2663
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
| 2313 | 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 | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2663
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
|
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
| 2313 | 24 */ |
| 25 | |
| 26 #ifndef INPUT_H | |
| 27 #define INPUT_H | |
| 28 | |
| 29 #include "plugin.h" | |
| 30 | |
| 31 typedef struct _InputPluginData InputPluginData; | |
| 32 | |
| 33 struct _InputPluginData { | |
| 34 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
|
35 InputPlayback *current_input_playback; |
| 2313 | 36 gboolean playing; |
| 37 gboolean paused; | |
| 38 gboolean stop; | |
| 39 gboolean buffering; | |
| 40 GMutex *playback_mutex; | |
| 41 }; | |
| 42 | |
| 43 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
|
44 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
|
45 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
|
46 void set_current_input_data(void * data); |
| 2313 | 47 InputVisType input_get_vis_type(); |
| 48 void free_vis_data(void); | |
| 2569 | 49 |
| 2313 | 50 InputPlugin *input_check_file(const gchar * filename, gboolean show_warning); |
| 51 TitleInput *input_get_song_tuple(const gchar * filename); | |
| 2569 | 52 |
| 2313 | 53 void input_play(gchar * filename); |
| 54 void input_stop(void); | |
| 55 void input_pause(void); | |
| 56 gint input_get_time(void); | |
| 57 void input_set_eq(gint on, gfloat preamp, gfloat * bands); | |
| 58 void input_seek(gint time); | |
| 59 void input_get_song_info(const gchar * filename, gchar ** title, | |
| 60 gint * length); | |
| 2569 | 61 |
| 2313 | 62 guchar *input_get_vis(gint time); |
| 63 void input_update_vis_plugin(gint time); | |
| 2569 | 64 |
| 2313 | 65 gchar *input_get_info_text(void); |
| 66 void input_about(gint index); | |
| 67 void input_configure(gint index); | |
| 2569 | 68 |
| 2313 | 69 void input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, |
| 70 gpointer ptr); | |
| 71 InputVisType input_get_vis_type(); | |
| 72 void input_update_vis(gint time); | |
| 73 | |
| 74 void input_set_info_text(const gchar * text); | |
| 75 void input_set_status_buffering(gboolean status); | |
| 76 | |
| 77 GList *input_scan_dir(const gchar * dir); | |
| 78 void input_get_volume(gint * l, gint * r); | |
| 79 void input_set_volume(gint l, gint r); | |
| 80 void input_file_info_box(const gchar * filename); | |
| 81 | |
| 82 gboolean input_is_disabled(const gchar * filename); | |
| 83 gboolean input_is_enabled(const gchar * filename); | |
| 84 gchar *input_stringify_disabled_list(void); | |
| 85 | |
| 86 extern InputPluginData ip_data; | |
| 87 extern gchar *input_info_text; | |
| 88 | |
| 89 | |
| 90 #endif |
