Mercurial > audlegacy
annotate audacious/input.h @ 2270:50dea14e2fa3 trunk
[svn] Serbian language upadated
author | kustodian |
---|---|
date | Thu, 04 Jan 2007 14:55:34 -0800 |
parents | 4bc65cec8f7a |
children |
rev | line source |
---|---|
2252 | 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 | |
0 | 6 * |
7 * Based on XMMS: | |
2252 | 8 * Copyright (C) 1998-2003 XMMS development team |
0 | 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 | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
1459
diff
changeset
|
12 * the Free Software Foundation; under version 2 of the License. |
0 | 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 | |
1459 | 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 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; | |
33 InputPlugin *current_input_plugin; | |
34 gboolean playing; | |
35 gboolean paused; | |
890
ed26947bbf57
[svn] Gapless support. This comes with a few caveats, that I will mention here:
nenolod
parents:
355
diff
changeset
|
36 gboolean stop; |
1273
3b990c26fc46
[svn] - Support for the buffer indicator in playpaus.png that was apparently
nhjm449
parents:
1231
diff
changeset
|
37 gboolean buffering; |
143 | 38 GMutex *playback_mutex; |
0 | 39 }; |
40 | |
41 GList *get_input_list(void); | |
42 InputPlugin *get_current_input_plugin(void); | |
43 void set_current_input_plugin(InputPlugin * ip); | |
44 InputVisType input_get_vis_type(); | |
45 void free_vis_data(void); | |
355
1c701dfe5098
[svn] Cache the decoder used for each PlaylistEntry. This reduces the amount
nenolod
parents:
143
diff
changeset
|
46 InputPlugin *input_check_file(const gchar * filename, gboolean show_warning); |
1231 | 47 TitleInput *input_get_song_tuple(const gchar * filename); |
0 | 48 void input_play(gchar * filename); |
49 void input_stop(void); | |
50 void input_pause(void); | |
51 gint input_get_time(void); | |
52 void input_set_eq(gint on, gfloat preamp, gfloat * bands); | |
53 void input_seek(gint time); | |
54 void input_get_song_info(const gchar * filename, gchar ** title, | |
55 gint * length); | |
56 guchar *input_get_vis(gint time); | |
57 void input_update_vis_plugin(gint time); | |
58 gchar *input_get_info_text(void); | |
59 void input_about(gint index); | |
60 void input_configure(gint index); | |
61 void input_add_vis(gint time, guchar * s, InputVisType type); | |
62 void input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, | |
63 gpointer ptr); | |
64 InputVisType input_get_vis_type(); | |
65 void input_update_vis(gint time); | |
66 | |
67 void input_set_info_text(const gchar * text); | |
1273
3b990c26fc46
[svn] - Support for the buffer indicator in playpaus.png that was apparently
nhjm449
parents:
1231
diff
changeset
|
68 void input_set_status_buffering(gboolean status); |
0 | 69 |
70 GList *input_scan_dir(const gchar * dir); | |
71 void input_get_volume(gint * l, gint * r); | |
72 void input_set_volume(gint l, gint r); | |
73 void input_file_info_box(const gchar * filename); | |
74 | |
75 void input_file_not_playable(const gchar * filename); | |
76 gboolean input_is_disabled(const gchar * filename); | |
77 gboolean input_is_enabled(const gchar * filename); | |
78 gchar *input_stringify_disabled_list(void); | |
79 | |
80 extern InputPluginData ip_data; | |
81 extern gchar *input_info_text; | |
82 | |
83 | |
84 #endif |