Mercurial > audlegacy
annotate src/audacious/input.c @ 3304:00286cde2485 trunk
Make filename a const
author | Christian Birchinger <joker@netswarm.net> |
---|---|
date | Fri, 10 Aug 2007 15:14:20 +0200 |
parents | f985357757e0 |
children | ea806daf3ef0 |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
2 * Copyright (C) 2005-2007 Audacious development team |
2313 | 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:
3110
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:
3110
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 #ifdef HAVE_CONFIG_H | |
27 # include "config.h" | |
28 #endif | |
29 | |
30 #include <glib.h> | |
31 #include <glib/gi18n.h> | |
32 #include <gtk/gtk.h> | |
33 #include <string.h> | |
34 | |
35 #include "fft.h" | |
36 #include "input.h" | |
37 #include "main.h" | |
38 #include "output.h" | |
39 #include "playback.h" | |
40 #include "pluginenum.h" | |
2420 | 41 #include "strings.h" |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
42 #include "tuple.h" |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
43 #include "tuple_formatter.h" |
2420 | 44 #include "ui_main.h" |
45 #include "util.h" | |
46 #include "visualization.h" | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
47 #include "ui_skinned_playstatus.h" |
2505 | 48 #include "hook.h" |
2313 | 49 |
2347
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
50 #include "vfs.h" |
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
51 #include "vfs_buffer.h" |
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
52 #include "vfs_buffered_file.h" |
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
53 |
2313 | 54 G_LOCK_DEFINE_STATIC(vis_mutex); |
55 | |
56 struct _VisNode { | |
57 gint time; | |
58 gint nch; | |
59 gint length; /* number of samples per channel */ | |
60 gint16 data[2][512]; | |
61 }; | |
62 | |
63 typedef struct _VisNode VisNode; | |
64 | |
65 | |
66 InputPluginData ip_data = { | |
67 NULL, | |
68 NULL, | |
69 FALSE, | |
70 FALSE, | |
71 FALSE, | |
72 FALSE, | |
73 NULL | |
74 }; | |
75 | |
76 static GList *vis_list = NULL; | |
77 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
78 InputPlayback * |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
79 get_current_input_playback(void) |
2313 | 80 { |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
81 return ip_data.current_input_playback; |
2313 | 82 } |
83 | |
84 void | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
85 set_current_input_playback(InputPlayback * ip) |
2313 | 86 { |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
87 ip_data.current_input_playback = ip; |
2313 | 88 } |
89 | |
90 GList * | |
91 get_input_list(void) | |
92 { | |
93 return ip_data.input_list; | |
94 } | |
95 | |
96 | |
97 gboolean | |
98 input_is_enabled(const gchar * filename) | |
99 { | |
100 gchar *basename = g_path_get_basename(filename); | |
101 gint enabled; | |
102 | |
103 enabled = GPOINTER_TO_INT(g_hash_table_lookup(plugin_matrix, basename)); | |
104 g_free(basename); | |
105 | |
106 return enabled; | |
107 } | |
108 | |
109 static void | |
110 disabled_iplugins_foreach_func(const gchar * name, | |
111 gboolean enabled, | |
112 GString * list) | |
113 { | |
114 g_return_if_fail(list != NULL); | |
115 | |
116 if (enabled) | |
117 return; | |
118 | |
119 if (list->len > 0) | |
120 g_string_append(list, ":"); | |
121 | |
122 g_string_append(list, name); | |
123 } | |
124 | |
125 gchar * | |
126 input_stringify_disabled_list(void) | |
127 { | |
128 GString *disabled_list; | |
129 | |
130 disabled_list = g_string_new(""); | |
131 g_hash_table_foreach(plugin_matrix, | |
132 (GHFunc) disabled_iplugins_foreach_func, | |
133 disabled_list); | |
134 | |
135 return g_string_free(disabled_list, FALSE); | |
136 } | |
137 | |
138 void | |
139 free_vis_data(void) | |
140 { | |
141 G_LOCK(vis_mutex); | |
142 g_list_foreach(vis_list, (GFunc) g_free, NULL); | |
143 g_list_free(vis_list); | |
144 vis_list = NULL; | |
145 G_UNLOCK(vis_mutex); | |
146 } | |
147 | |
148 static void | |
149 convert_to_s16_ne(AFormat fmt, gpointer ptr, gint16 * left, | |
150 gint16 * right, gint nch, gint max) | |
151 { | |
152 gint16 *ptr16; | |
153 guint16 *ptru16; | |
154 guint8 *ptru8; | |
155 gint i; | |
156 | |
157 switch (fmt) { | |
158 case FMT_U8: | |
159 ptru8 = ptr; | |
160 if (nch == 1) | |
161 for (i = 0; i < max; i++) | |
162 left[i] = ((*ptru8++) ^ 128) << 8; | |
163 else | |
164 for (i = 0; i < max; i++) { | |
165 left[i] = ((*ptru8++) ^ 128) << 8; | |
166 right[i] = ((*ptru8++) ^ 128) << 8; | |
167 } | |
168 break; | |
169 case FMT_S8: | |
170 ptru8 = ptr; | |
171 if (nch == 1) | |
172 for (i = 0; i < max; i++) | |
173 left[i] = (*ptru8++) << 8; | |
174 else | |
175 for (i = 0; i < max; i++) { | |
176 left[i] = (*ptru8++) << 8; | |
177 right[i] = (*ptru8++) << 8; | |
178 } | |
179 break; | |
180 case FMT_U16_LE: | |
181 ptru16 = ptr; | |
182 if (nch == 1) | |
183 for (i = 0; i < max; i++, ptru16++) | |
184 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
185 else | |
186 for (i = 0; i < max; i++) { | |
187 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
188 ptru16++; | |
189 right[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
190 ptru16++; | |
191 } | |
192 break; | |
193 case FMT_U16_BE: | |
194 ptru16 = ptr; | |
195 if (nch == 1) | |
196 for (i = 0; i < max; i++, ptru16++) | |
197 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
198 else | |
199 for (i = 0; i < max; i++) { | |
200 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
201 ptru16++; | |
202 right[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
203 ptru16++; | |
204 } | |
205 break; | |
206 case FMT_U16_NE: | |
207 ptru16 = ptr; | |
208 if (nch == 1) | |
209 for (i = 0; i < max; i++) | |
210 left[i] = (*ptru16++) ^ 32768; | |
211 else | |
212 for (i = 0; i < max; i++) { | |
213 left[i] = (*ptru16++) ^ 32768; | |
214 right[i] = (*ptru16++) ^ 32768; | |
215 } | |
216 break; | |
217 case FMT_S16_LE: | |
218 ptr16 = ptr; | |
219 if (nch == 1) | |
220 for (i = 0; i < max; i++, ptr16++) | |
221 left[i] = GINT16_FROM_LE(*ptr16); | |
222 else | |
223 for (i = 0; i < max; i++) { | |
224 left[i] = GINT16_FROM_LE(*ptr16); | |
225 ptr16++; | |
226 right[i] = GINT16_FROM_LE(*ptr16); | |
227 ptr16++; | |
228 } | |
229 break; | |
230 case FMT_S16_BE: | |
231 ptr16 = ptr; | |
232 if (nch == 1) | |
233 for (i = 0; i < max; i++, ptr16++) | |
234 left[i] = GINT16_FROM_BE(*ptr16); | |
235 else | |
236 for (i = 0; i < max; i++) { | |
237 left[i] = GINT16_FROM_BE(*ptr16); | |
238 ptr16++; | |
239 right[i] = GINT16_FROM_BE(*ptr16); | |
240 ptr16++; | |
241 } | |
242 break; | |
243 case FMT_S16_NE: | |
244 ptr16 = ptr; | |
245 if (nch == 1) | |
246 for (i = 0; i < max; i++) | |
247 left[i] = (*ptr16++); | |
248 else | |
249 for (i = 0; i < max; i++) { | |
250 left[i] = (*ptr16++); | |
251 right[i] = (*ptr16++); | |
252 } | |
253 break; | |
254 } | |
255 } | |
256 | |
257 InputVisType | |
258 input_get_vis_type() | |
259 { | |
260 return INPUT_VIS_OFF; | |
261 } | |
262 | |
263 void | |
264 input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, gpointer ptr) | |
265 { | |
266 VisNode *vis_node; | |
267 gint max; | |
268 | |
269 max = length / nch; | |
270 if (fmt == FMT_U16_LE || fmt == FMT_U16_BE || fmt == FMT_U16_NE || | |
271 fmt == FMT_S16_LE || fmt == FMT_S16_BE || fmt == FMT_S16_NE) | |
272 max /= 2; | |
273 max = CLAMP(max, 0, 512); | |
274 | |
275 vis_node = g_new0(VisNode, 1); | |
276 vis_node->time = time; | |
277 vis_node->nch = nch; | |
278 vis_node->length = max; | |
279 convert_to_s16_ne(fmt, ptr, vis_node->data[0], vis_node->data[1], nch, | |
280 max); | |
281 | |
282 G_LOCK(vis_mutex); | |
283 vis_list = g_list_append(vis_list, vis_node); | |
284 G_UNLOCK(vis_mutex); | |
285 } | |
286 | |
287 void | |
288 input_dont_show_warning(GtkObject * object, gpointer user_data) | |
289 { | |
290 *((gboolean *) user_data) = | |
291 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object)); | |
292 } | |
293 | |
3133
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
294 static time_t |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
295 input_get_mtime(const gchar *filename) |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
296 { |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
297 struct stat buf; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
298 gint rv; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
299 gchar *realfn = NULL; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
300 |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
301 /* stat() does not accept file:// --yaz */ |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
302 realfn = g_filename_from_uri(filename, NULL, NULL); |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
303 rv = stat(realfn ? realfn : filename, &buf); |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
304 g_free(realfn); realfn = NULL; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
305 |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
306 if (rv == 0) { |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
307 return buf.st_mtime; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
308 } else { |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
309 return 0; //error |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
310 } |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
311 } |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
312 |
2313 | 313 /* |
314 * input_check_file() | |
315 * | |
316 * Inputs: | |
317 * filename to check recursively against input plugins | |
318 * whether or not to show an error | |
319 * | |
320 * Outputs: | |
321 * pointer to input plugin which can handle this file | |
322 * otherwise, NULL | |
323 * | |
324 * (the previous code returned a boolean of whether or not we can | |
325 * play the file... even WORSE for performance) | |
326 * | |
327 * Side Effects: | |
328 * various input plugins open the file and probe it | |
329 * -- this can have very ugly effects performance wise on streams | |
330 * | |
331 * --nenolod, Dec 31 2005 | |
332 * | |
333 * Rewritten to use NewVFS probing, semantics are still basically the same. | |
334 * | |
335 * --nenolod, Dec 5 2006 | |
336 * | |
337 * Adapted to use the NewVFS extension probing system if enabled. | |
338 * | |
339 * --nenolod, Dec 12 2006 | |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
340 * |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
341 * Adapted to use the mimetype system. |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
342 * |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
343 * --nenolod, Jul 9 2007 |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
344 * |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
345 * Adapted to return ProbeResult structure. |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
346 * |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
347 * --nenolod, Jul 20 2007 |
2313 | 348 */ |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
349 ProbeResult * |
2313 | 350 input_check_file(const gchar * filename, gboolean show_warning) |
351 { | |
352 VFSFile *fd; | |
353 GList *node; | |
354 InputPlugin *ip; | |
355 gchar *filename_proxy; | |
356 gint ret = 1; | |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
357 gchar *ext, *tmp, *tmp_uri; |
2313 | 358 gboolean use_ext_filter; |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
359 gchar *mimetype; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
360 ProbeResult *pr = NULL; |
2313 | 361 |
362 filename_proxy = g_strdup(filename); | |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
363 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
364 /* Some URIs will end in ?<subsong> to determine the subsong requested. */ |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
365 tmp_uri = g_strdup(filename); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
366 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
367 tmp = strrchr(tmp_uri, '?'); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
368 |
3144
2812140dba3f
Backed out changeset 4673533d7cc3
Cristi Magherusan <majeru@atheme-project.org>
parents:
3143
diff
changeset
|
369 if (tmp != NULL && g_ascii_isdigit(*(tmp + 1))) |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
370 *tmp = '\0'; |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
371 |
3145
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
372 /* CD-Audio uses cdda:// dummy paths, no filedescriptor handling for it */ |
3162
5161ced1bce2
exclude cue:// from regular scheme check. it is temporal too.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3145
diff
changeset
|
373 /* also cuesheet uses cue:// */ |
5161ced1bce2
exclude cue:// from regular scheme check. it is temporal too.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3145
diff
changeset
|
374 if (!g_strncasecmp(filename, "cdda://", 7) || |
5161ced1bce2
exclude cue:// from regular scheme check. it is temporal too.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3145
diff
changeset
|
375 !g_strncasecmp(filename, "cue://", 6)) { |
3145
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
376 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
377 { |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
378 ip = INPUT_PLUGIN(node->data); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
379 if (!ip || !input_is_enabled(ip->filename)) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
380 continue; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
381 if (ip->is_our_file != NULL) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
382 ret = ip->is_our_file(filename_proxy); |
3169
b1964057a1a0
Hardcoded a dummy path to use with cdaudio-ng plugin
Calin Crisan ccrisan@gmail.com
parents:
3166
diff
changeset
|
383 else |
b1964057a1a0
Hardcoded a dummy path to use with cdaudio-ng plugin
Calin Crisan ccrisan@gmail.com
parents:
3166
diff
changeset
|
384 ret = 0; |
3145
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
385 if (ret > 0) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
386 { |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
387 g_free(filename_proxy); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
388 pr = g_new0(ProbeResult, 1); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
389 pr->ip = ip; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
390 return pr; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
391 } |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
392 } |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
393 g_free(filename_proxy); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
394 return NULL; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
395 } |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
396 |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
397 fd = vfs_buffered_file_new_from_uri(tmp_uri); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
398 g_free(tmp_uri); |
2313 | 399 |
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
400 if (!fd) { |
3125 | 401 printf("Unable to read from %s, giving up.\n", filename_proxy); |
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
402 g_free(filename_proxy); |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
403 return NULL; |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
404 } |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
405 |
2313 | 406 ext = strrchr(filename_proxy, '.') + 1; |
407 | |
2569 | 408 use_ext_filter = |
409 (fd != NULL && (!g_strncasecmp(filename, "/", 1) || | |
410 !g_strncasecmp(filename, "file://", 7))) ? TRUE : FALSE; | |
2313 | 411 |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
412 mimetype = vfs_get_metadata(fd, "content-type"); |
3200
95cfda3878da
oops, using a C0X extension (break-from-if) probably isn't cool here.
William Pitcock <nenolod@atheme-project.org>
parents:
3198
diff
changeset
|
413 if ((ip = mime_get_plugin(mimetype)) != NULL && |
95cfda3878da
oops, using a C0X extension (break-from-if) probably isn't cool here.
William Pitcock <nenolod@atheme-project.org>
parents:
3198
diff
changeset
|
414 input_is_enabled(ip->filename) == TRUE) |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
415 { |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
416 if (ip->probe_for_tuple != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
417 { |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
418 Tuple *tuple = ip->probe_for_tuple(filename_proxy, fd); |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
419 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
420 if (tuple != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
421 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
422 g_free(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
423 vfs_fclose(fd); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
424 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
425 pr = g_new0(ProbeResult, 1); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
426 pr->ip = ip; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
427 pr->tuple = tuple; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
428 tuple_associate_int(pr->tuple, "mtime", input_get_mtime(filename_proxy)); |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
429 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
430 return pr; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
431 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
432 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
433 else if (fd && ip->is_our_file_from_vfs != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
434 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
435 ret = ip->is_our_file_from_vfs(filename_proxy, fd); |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
436 |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
437 if (ret > 0) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
438 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
439 g_free(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
440 vfs_fclose(fd); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
441 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
442 pr = g_new0(ProbeResult, 1); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
443 pr->ip = ip; |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
444 |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
445 return pr; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
446 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
447 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
448 else if (ip->is_our_file != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
449 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
450 ret = ip->is_our_file(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
451 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
452 if (ret > 0) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
453 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
454 g_free(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
455 vfs_fclose(fd); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
456 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
457 pr = g_new0(ProbeResult, 1); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
458 pr->ip = ip; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
459 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
460 return pr; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
461 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
462 } |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
463 } |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
464 |
2313 | 465 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
466 { | |
467 ip = INPUT_PLUGIN(node->data); | |
468 | |
469 if (!ip || !input_is_enabled(ip->filename)) | |
470 continue; | |
471 | |
2342
f140d0a27093
[svn] - use vfs_rewind() instead of vfs_fseek(fd, 0, seek_set) which was wrong
nenolod
parents:
2331
diff
changeset
|
472 vfs_rewind(fd); |
2313 | 473 |
2569 | 474 if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL && |
475 ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE) | |
2313 | 476 { |
477 gint i; | |
478 gboolean is_our_ext = FALSE; | |
479 | |
480 for (i = 0; ip->vfs_extensions[i] != NULL; i++) | |
481 { | |
482 if (str_has_prefix_nocase(ext, ip->vfs_extensions[i])) | |
2331 | 483 { |
484 is_our_ext = TRUE; | |
485 break; | |
486 } | |
2313 | 487 } |
488 | |
489 /* not a plugin that supports this extension */ | |
490 if (is_our_ext == FALSE) | |
491 continue; | |
492 } | |
493 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
494 if (fd && ip->probe_for_tuple != NULL) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
495 { |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
496 Tuple *tuple = ip->probe_for_tuple(filename_proxy, fd); |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
497 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
498 if (tuple != NULL) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
499 { |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
500 g_free(filename_proxy); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
501 vfs_fclose(fd); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
502 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
503 pr = g_new0(ProbeResult, 1); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
504 pr->ip = ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
505 pr->tuple = tuple; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
506 tuple_associate_int(pr->tuple, "mtime", input_get_mtime(filename_proxy)); |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
507 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
508 return pr; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
509 } |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
510 } |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
511 else if (fd && ip->is_our_file_from_vfs != NULL) |
2313 | 512 { |
513 ret = ip->is_our_file_from_vfs(filename_proxy, fd); | |
514 | |
515 if (ret > 0) | |
516 { | |
517 g_free(filename_proxy); | |
518 vfs_fclose(fd); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
519 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
520 pr = g_new0(ProbeResult, 1); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
521 pr->ip = ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
522 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
523 return pr; |
2313 | 524 } |
525 } | |
526 else if (ip->is_our_file != NULL) | |
527 { | |
528 ret = ip->is_our_file(filename_proxy); | |
529 | |
530 if (ret > 0) | |
531 { | |
532 g_free(filename_proxy); | |
533 vfs_fclose(fd); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
534 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
535 pr = g_new0(ProbeResult, 1); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
536 pr->ip = ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
537 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
538 return pr; |
2313 | 539 } |
540 } | |
541 | |
2331 | 542 if (ret <= -1) |
543 break; | |
2313 | 544 } |
545 | |
546 g_free(filename_proxy); | |
547 | |
548 vfs_fclose(fd); | |
549 | |
550 return NULL; | |
551 } | |
552 | |
553 | |
554 void | |
555 input_set_eq(gint on, gfloat preamp, gfloat * bands) | |
556 { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
557 InputPlayback *playback; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
558 |
2313 | 559 if (!ip_data.playing) |
560 return; | |
561 | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
562 if ((playback = get_current_input_playback()) == NULL) |
2313 | 563 return; |
564 | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
565 if (playback->plugin->set_eq) |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
566 playback->plugin->set_eq(on, preamp, bands); |
2313 | 567 } |
568 | |
569 void | |
570 input_get_song_info(const gchar * filename, gchar ** title, gint * length) | |
571 { | |
572 InputPlugin *ip = NULL; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
573 Tuple *tuple; |
2313 | 574 gchar *tmp = NULL, *ext; |
575 gchar *filename_proxy; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
576 ProbeResult *pr; |
2313 | 577 |
578 g_return_if_fail(filename != NULL); | |
579 g_return_if_fail(title != NULL); | |
580 g_return_if_fail(length != NULL); | |
581 | |
582 filename_proxy = g_strdup(filename); | |
583 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
584 pr = input_check_file(filename_proxy, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
585 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
586 if (!pr) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
587 return; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
588 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
589 ip = pr->ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
590 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
591 g_free(pr); |
2313 | 592 |
2331 | 593 if (ip && ip->get_song_info) { |
2313 | 594 ip->get_song_info(filename_proxy, &tmp, length); |
595 *title = str_to_utf8(tmp); | |
596 g_free(tmp); | |
597 } | |
598 else { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
599 tuple = tuple_new(); |
2313 | 600 |
601 tmp = g_strdup(filename); | |
602 if ((ext = strrchr(tmp, '.'))) | |
603 *ext = '\0'; | |
604 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
605 tuple_associate_string(tuple, "file-name", g_path_get_basename(tmp)); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
606 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
607 if (ext) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
608 tuple_associate_string(tuple, "file-ext", ext + 1); |
2313 | 609 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
610 tuple_associate_string(tuple, "file-path", g_path_get_dirname(tmp)); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
611 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
612 tmp = tuple_formatter_process_string(tuple, cfg.gentitle_format); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
613 if (tmp != NULL && *tmp != '\0') { |
2313 | 614 (*title) = str_to_utf8(tmp); |
615 g_free(tmp); | |
616 } | |
617 else { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
618 (*title) = filename_to_utf8(tuple_get_string(tuple, "file-name")); |
2313 | 619 } |
620 | |
621 (*length) = -1; | |
622 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
623 mowgli_object_unref(tuple); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
624 tuple = NULL; |
2313 | 625 } |
626 | |
627 g_free(filename_proxy); | |
628 } | |
629 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
630 Tuple * |
2313 | 631 input_get_song_tuple(const gchar * filename) |
632 { | |
633 InputPlugin *ip = NULL; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
634 Tuple *input; |
2394
e2aaa7dca389
[svn] - tuple->file_name coming from input plugins have a string with filename + extension, but tuple->file_name coming from input plugins without a get_song_tuple have a string with filename without extension; fix this incongruency, always pass tuple->filename with a string containing filename + extension
giacomo
parents:
2373
diff
changeset
|
635 gchar *ext = NULL; |
2313 | 636 gchar *filename_proxy; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
637 ProbeResult *pr; |
2313 | 638 |
639 if (filename == NULL) | |
2331 | 640 return NULL; |
2313 | 641 |
642 filename_proxy = g_strdup(filename); | |
643 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
644 pr = input_check_file(filename_proxy, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
645 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
646 if (!pr) |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
647 return NULL; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
648 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
649 ip = pr->ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
650 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
651 g_free(pr); |
2313 | 652 |
2331 | 653 if (ip && ip->get_song_tuple) |
2313 | 654 input = ip->get_song_tuple(filename_proxy); |
2331 | 655 else |
656 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
657 gchar *tmp; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
658 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
659 input = tuple_new(); |
2313 | 660 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
661 tmp = g_strdup(filename); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
662 if ((ext = strrchr(tmp, '.'))) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
663 *ext = '\0'; |
2313 | 664 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
665 tuple_associate_string(input, "file-name", g_path_get_basename(tmp)); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
666 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
667 if (ext) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
668 tuple_associate_string(input, "file-ext", ext + 1); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
669 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
670 tuple_associate_string(input, "file-path", g_path_get_dirname(tmp)); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
671 tuple_associate_int(input, "length", -1); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
672 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
673 g_free(tmp); |
2313 | 674 } |
675 | |
2569 | 676 g_free(filename_proxy); |
2313 | 677 return input; |
678 } | |
679 | |
680 static void | |
681 input_general_file_info_box(const gchar * filename, InputPlugin * ip) | |
682 { | |
683 GtkWidget *window, *vbox; | |
684 GtkWidget *label, *filename_hbox, *filename_entry; | |
685 GtkWidget *bbox, *cancel; | |
686 | |
687 gchar *title, *fileinfo, *basename, *iplugin; | |
688 gchar *filename_utf8; | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
689 gchar *realfn = NULL; |
2313 | 690 |
691 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
692 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
693 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); | |
694 | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
695 realfn = g_filename_from_uri(filename, NULL, NULL); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
696 basename = g_path_get_basename(realfn ? realfn : filename); |
2313 | 697 fileinfo = filename_to_utf8(basename); |
698 title = g_strdup_printf(_("audacious: %s"), fileinfo); | |
699 | |
700 gtk_window_set_title(GTK_WINDOW(window), title); | |
701 | |
702 g_free(title); | |
703 g_free(fileinfo); | |
704 g_free(basename); | |
705 | |
706 gtk_container_set_border_width(GTK_CONTAINER(window), 10); | |
707 | |
708 vbox = gtk_vbox_new(FALSE, 10); | |
709 gtk_container_add(GTK_CONTAINER(window), vbox); | |
710 | |
711 filename_hbox = gtk_hbox_new(FALSE, 5); | |
712 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0); | |
713 | |
714 label = gtk_label_new(_("Filename:")); | |
715 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0); | |
716 | |
717 filename_entry = gtk_entry_new(); | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
718 filename_utf8 = filename_to_utf8(realfn ? realfn : filename); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
719 g_free(realfn); realfn = NULL; |
2313 | 720 |
721 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8); | |
722 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE); | |
723 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0); | |
724 | |
725 g_free(filename_utf8); | |
726 | |
727 if (ip) | |
728 if (ip->description) | |
729 iplugin = ip->description; | |
730 else | |
731 iplugin = ip->filename; | |
732 else | |
733 iplugin = _("No input plugin recognized this file"); | |
734 | |
735 title = g_strdup_printf(_("Input plugin: %s"), iplugin); | |
736 | |
737 label = gtk_label_new(title); | |
738 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
739 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
740 g_free(title); | |
741 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0); | |
742 | |
743 bbox = gtk_hbutton_box_new(); | |
744 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
745 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
746 | |
747 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
748 g_signal_connect_swapped(G_OBJECT(cancel), "clicked", | |
749 GTK_SIGNAL_FUNC(gtk_widget_destroy), | |
750 GTK_OBJECT(window)); | |
751 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
752 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
753 | |
754 gtk_widget_show_all(window); | |
755 } | |
756 | |
757 void | |
758 input_file_info_box(const gchar * filename) | |
759 { | |
760 InputPlugin *ip; | |
761 gchar *filename_proxy; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
762 ProbeResult *pr; |
2313 | 763 |
764 filename_proxy = g_strdup(filename); | |
765 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
766 pr = input_check_file(filename_proxy, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
767 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
768 if (!pr) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
769 return; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
770 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
771 ip = pr->ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
772 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
773 g_free(pr); |
2313 | 774 |
775 if (ip->file_info_box) | |
776 ip->file_info_box(filename_proxy); | |
777 else | |
778 input_general_file_info_box(filename, ip); | |
779 | |
780 input_general_file_info_box(filename, NULL); | |
781 g_free(filename_proxy); | |
782 } | |
783 | |
784 GList * | |
785 input_scan_dir(const gchar * path) | |
786 { | |
787 GList *node, *result = NULL; | |
788 InputPlugin *ip; | |
789 gchar *path_proxy; | |
790 | |
791 g_return_val_if_fail(path != NULL, NULL); | |
792 | |
793 if (*path == '/') | |
794 while (path[1] == '/') | |
795 path++; | |
796 | |
797 path_proxy = g_strdup(path); | |
798 | |
799 for (node = get_input_list(); node; node = g_list_next(node)) { | |
800 ip = INPUT_PLUGIN(node->data); | |
801 | |
802 if (!ip) | |
803 continue; | |
804 | |
805 if (!ip->scan_dir) | |
806 continue; | |
807 | |
808 if (!input_is_enabled(ip->filename)) | |
809 continue; | |
810 | |
811 if ((result = ip->scan_dir(path_proxy))) | |
812 break; | |
813 } | |
814 | |
815 g_free(path_proxy); | |
816 | |
817 return result; | |
818 } | |
819 | |
820 void | |
821 input_get_volume(gint * l, gint * r) | |
822 { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
823 InputPlayback *playback; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
824 |
2313 | 825 *l = -1; |
826 *r = -1; | |
827 if (playback_get_playing()) { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
828 if ((playback = get_current_input_playback()) != NULL && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
829 playback->plugin->get_volume && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
830 playback->plugin->get_volume(l, r)) |
2313 | 831 return; |
832 } | |
833 output_get_volume(l, r); | |
834 } | |
835 | |
836 void | |
837 input_set_volume(gint l, gint r) | |
838 { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
839 InputPlayback *playback; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
840 |
2505 | 841 gint h_vol[2]; |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
842 |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
843 h_vol[0] = l; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
844 h_vol[1] = r; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
845 hook_call("volume set", h_vol); |
2505 | 846 |
2569 | 847 if (playback_get_playing() && |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
848 (playback = get_current_input_playback()) != NULL && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
849 playback->plugin->set_volume && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
850 playback->plugin->set_volume(l, r)) |
2569 | 851 return; |
852 | |
2313 | 853 output_set_volume(l, r); |
854 } | |
855 | |
856 void | |
857 input_update_vis(gint time) | |
858 { | |
859 GList *node; | |
860 VisNode *vis = NULL, *visnext = NULL; | |
861 gboolean found = FALSE; | |
862 | |
863 G_LOCK(vis_mutex); | |
864 node = vis_list; | |
865 while (g_list_next(node) && !found) { | |
866 visnext = g_list_next(node)->data; | |
867 vis = node->data; | |
868 | |
869 if (vis->time >= time) | |
870 break; | |
871 | |
872 vis_list = g_list_delete_link(vis_list, node); | |
873 | |
874 if (visnext->time >= time) { | |
875 found = TRUE; | |
876 break; | |
877 } | |
878 g_free(vis); | |
879 node = vis_list; | |
880 } | |
881 G_UNLOCK(vis_mutex); | |
882 | |
883 if (found) { | |
884 vis_send_data(vis->data, vis->nch, vis->length); | |
885 g_free(vis); | |
886 } | |
887 else | |
888 vis_send_data(NULL, 0, 0); | |
889 } | |
890 | |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
891 /* FIXME: move this somewhere else */ |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
892 void |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
893 input_set_info_text(gchar *text) |
2313 | 894 { |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
895 gchar *title = g_strdup(text); |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
896 event_queue("title change", title); |
2313 | 897 } |
898 | |
899 void | |
900 input_set_status_buffering(gboolean status) | |
901 { | |
902 if (!playback_get_playing()) | |
903 return; | |
904 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
905 if (!get_current_input_playback()) |
2313 | 906 return; |
907 | |
908 ip_data.buffering = status; | |
909 | |
910 g_return_if_fail(mainwin_playstatus != NULL); | |
911 | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
912 if (ip_data.buffering == TRUE && mainwin_playstatus != NULL && UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status == STATUS_STOP) |
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
913 UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status = STATUS_PLAY; |
2313 | 914 |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
915 ui_skinned_playstatus_set_buffering(mainwin_playstatus, ip_data.buffering); |
2313 | 916 } |
917 | |
918 void | |
919 input_about(gint index) | |
920 { | |
921 InputPlugin *ip; | |
922 | |
923 ip = g_list_nth(ip_data.input_list, index)->data; | |
924 if (ip && ip->about) | |
925 ip->about(); | |
926 } | |
927 | |
928 void | |
929 input_configure(gint index) | |
930 { | |
931 InputPlugin *ip; | |
932 | |
933 ip = g_list_nth(ip_data.input_list, index)->data; | |
934 if (ip && ip->configure) | |
935 ip->configure(); | |
936 } |