|
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;
|
|
|
33 InputPlugin *current_input_plugin;
|
|
|
34 gboolean playing;
|
|
|
35 gboolean paused;
|
|
|
36 gboolean stop;
|
|
|
37 gboolean buffering;
|
|
|
38 GMutex *playback_mutex;
|
|
|
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);
|
|
|
46 InputPlugin *input_check_file(const gchar * filename, gboolean show_warning);
|
|
|
47 TitleInput *input_get_song_tuple(const gchar * filename);
|
|
|
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);
|
|
|
68 void input_set_status_buffering(gboolean status);
|
|
|
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
|