Mercurial > audlegacy
annotate src/audacious/input.c @ 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 | ed6c6aa50c7c c92070f10148 |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2006 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:
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" |
2313 | 42 #include "titlestring.h" |
2420 | 43 #include "ui_main.h" |
44 #include "util.h" | |
45 #include "visualization.h" | |
46 #include "widgets/widgetcore.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 | |
78 gchar *input_info_text = NULL; | |
79 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
80 InputPlayback * |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
81 get_current_input_playback(void) |
2313 | 82 { |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
83 return ip_data.current_input_playback; |
2313 | 84 } |
85 | |
86 void | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
87 set_current_input_playback(InputPlayback * ip) |
2313 | 88 { |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
89 ip_data.current_input_playback = ip; |
2313 | 90 } |
91 | |
92 GList * | |
93 get_input_list(void) | |
94 { | |
95 return ip_data.input_list; | |
96 } | |
97 | |
98 | |
99 gboolean | |
100 input_is_enabled(const gchar * filename) | |
101 { | |
102 gchar *basename = g_path_get_basename(filename); | |
103 gint enabled; | |
104 | |
105 enabled = GPOINTER_TO_INT(g_hash_table_lookup(plugin_matrix, basename)); | |
106 g_free(basename); | |
107 | |
108 return enabled; | |
109 } | |
110 | |
111 static void | |
112 disabled_iplugins_foreach_func(const gchar * name, | |
113 gboolean enabled, | |
114 GString * list) | |
115 { | |
116 g_return_if_fail(list != NULL); | |
117 | |
118 if (enabled) | |
119 return; | |
120 | |
121 if (list->len > 0) | |
122 g_string_append(list, ":"); | |
123 | |
124 g_string_append(list, name); | |
125 } | |
126 | |
127 gchar * | |
128 input_stringify_disabled_list(void) | |
129 { | |
130 GString *disabled_list; | |
131 | |
132 disabled_list = g_string_new(""); | |
133 g_hash_table_foreach(plugin_matrix, | |
134 (GHFunc) disabled_iplugins_foreach_func, | |
135 disabled_list); | |
136 | |
137 return g_string_free(disabled_list, FALSE); | |
138 } | |
139 | |
140 void | |
141 free_vis_data(void) | |
142 { | |
143 G_LOCK(vis_mutex); | |
144 g_list_foreach(vis_list, (GFunc) g_free, NULL); | |
145 g_list_free(vis_list); | |
146 vis_list = NULL; | |
147 G_UNLOCK(vis_mutex); | |
148 } | |
149 | |
150 static void | |
151 convert_to_s16_ne(AFormat fmt, gpointer ptr, gint16 * left, | |
152 gint16 * right, gint nch, gint max) | |
153 { | |
154 gint16 *ptr16; | |
155 guint16 *ptru16; | |
156 guint8 *ptru8; | |
157 gint i; | |
158 | |
159 switch (fmt) { | |
160 case FMT_U8: | |
161 ptru8 = ptr; | |
162 if (nch == 1) | |
163 for (i = 0; i < max; i++) | |
164 left[i] = ((*ptru8++) ^ 128) << 8; | |
165 else | |
166 for (i = 0; i < max; i++) { | |
167 left[i] = ((*ptru8++) ^ 128) << 8; | |
168 right[i] = ((*ptru8++) ^ 128) << 8; | |
169 } | |
170 break; | |
171 case FMT_S8: | |
172 ptru8 = ptr; | |
173 if (nch == 1) | |
174 for (i = 0; i < max; i++) | |
175 left[i] = (*ptru8++) << 8; | |
176 else | |
177 for (i = 0; i < max; i++) { | |
178 left[i] = (*ptru8++) << 8; | |
179 right[i] = (*ptru8++) << 8; | |
180 } | |
181 break; | |
182 case FMT_U16_LE: | |
183 ptru16 = ptr; | |
184 if (nch == 1) | |
185 for (i = 0; i < max; i++, ptru16++) | |
186 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
187 else | |
188 for (i = 0; i < max; i++) { | |
189 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
190 ptru16++; | |
191 right[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
192 ptru16++; | |
193 } | |
194 break; | |
195 case FMT_U16_BE: | |
196 ptru16 = ptr; | |
197 if (nch == 1) | |
198 for (i = 0; i < max; i++, ptru16++) | |
199 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
200 else | |
201 for (i = 0; i < max; i++) { | |
202 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
203 ptru16++; | |
204 right[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
205 ptru16++; | |
206 } | |
207 break; | |
208 case FMT_U16_NE: | |
209 ptru16 = ptr; | |
210 if (nch == 1) | |
211 for (i = 0; i < max; i++) | |
212 left[i] = (*ptru16++) ^ 32768; | |
213 else | |
214 for (i = 0; i < max; i++) { | |
215 left[i] = (*ptru16++) ^ 32768; | |
216 right[i] = (*ptru16++) ^ 32768; | |
217 } | |
218 break; | |
219 case FMT_S16_LE: | |
220 ptr16 = ptr; | |
221 if (nch == 1) | |
222 for (i = 0; i < max; i++, ptr16++) | |
223 left[i] = GINT16_FROM_LE(*ptr16); | |
224 else | |
225 for (i = 0; i < max; i++) { | |
226 left[i] = GINT16_FROM_LE(*ptr16); | |
227 ptr16++; | |
228 right[i] = GINT16_FROM_LE(*ptr16); | |
229 ptr16++; | |
230 } | |
231 break; | |
232 case FMT_S16_BE: | |
233 ptr16 = ptr; | |
234 if (nch == 1) | |
235 for (i = 0; i < max; i++, ptr16++) | |
236 left[i] = GINT16_FROM_BE(*ptr16); | |
237 else | |
238 for (i = 0; i < max; i++) { | |
239 left[i] = GINT16_FROM_BE(*ptr16); | |
240 ptr16++; | |
241 right[i] = GINT16_FROM_BE(*ptr16); | |
242 ptr16++; | |
243 } | |
244 break; | |
245 case FMT_S16_NE: | |
246 ptr16 = ptr; | |
247 if (nch == 1) | |
248 for (i = 0; i < max; i++) | |
249 left[i] = (*ptr16++); | |
250 else | |
251 for (i = 0; i < max; i++) { | |
252 left[i] = (*ptr16++); | |
253 right[i] = (*ptr16++); | |
254 } | |
255 break; | |
256 } | |
257 } | |
258 | |
259 InputVisType | |
260 input_get_vis_type() | |
261 { | |
262 return INPUT_VIS_OFF; | |
263 } | |
264 | |
265 void | |
266 input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, gpointer ptr) | |
267 { | |
268 VisNode *vis_node; | |
269 gint max; | |
270 | |
271 max = length / nch; | |
272 if (fmt == FMT_U16_LE || fmt == FMT_U16_BE || fmt == FMT_U16_NE || | |
273 fmt == FMT_S16_LE || fmt == FMT_S16_BE || fmt == FMT_S16_NE) | |
274 max /= 2; | |
275 max = CLAMP(max, 0, 512); | |
276 | |
277 vis_node = g_new0(VisNode, 1); | |
278 vis_node->time = time; | |
279 vis_node->nch = nch; | |
280 vis_node->length = max; | |
281 convert_to_s16_ne(fmt, ptr, vis_node->data[0], vis_node->data[1], nch, | |
282 max); | |
283 | |
284 G_LOCK(vis_mutex); | |
285 vis_list = g_list_append(vis_list, vis_node); | |
286 G_UNLOCK(vis_mutex); | |
287 } | |
288 | |
289 void | |
290 input_dont_show_warning(GtkObject * object, gpointer user_data) | |
291 { | |
292 *((gboolean *) user_data) = | |
293 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object)); | |
294 } | |
295 | |
296 /* | |
297 * input_check_file() | |
298 * | |
299 * Inputs: | |
300 * filename to check recursively against input plugins | |
301 * whether or not to show an error | |
302 * | |
303 * Outputs: | |
304 * pointer to input plugin which can handle this file | |
305 * otherwise, NULL | |
306 * | |
307 * (the previous code returned a boolean of whether or not we can | |
308 * play the file... even WORSE for performance) | |
309 * | |
310 * Side Effects: | |
311 * various input plugins open the file and probe it | |
312 * -- this can have very ugly effects performance wise on streams | |
313 * | |
314 * --nenolod, Dec 31 2005 | |
315 * | |
316 * Rewritten to use NewVFS probing, semantics are still basically the same. | |
317 * | |
318 * --nenolod, Dec 5 2006 | |
319 * | |
320 * Adapted to use the NewVFS extension probing system if enabled. | |
321 * | |
322 * --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
|
323 * |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
324 * 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
|
325 * |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
326 * --nenolod, Jul 9 2007 |
2313 | 327 */ |
328 InputPlugin * | |
329 input_check_file(const gchar * filename, gboolean show_warning) | |
330 { | |
331 VFSFile *fd; | |
332 GList *node; | |
333 InputPlugin *ip; | |
334 gchar *filename_proxy; | |
335 gint ret = 1; | |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
336 gchar *ext, *tmp, *tmp_uri; |
2313 | 337 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
|
338 gchar *mimetype; |
2313 | 339 |
340 filename_proxy = g_strdup(filename); | |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
341 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
342 /* 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
|
343 tmp_uri = g_strdup(filename); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
344 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
345 tmp = strrchr(tmp_uri, '?'); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
346 |
2510
c8d6564f9c82
[svn] - only strip the subsong identifier if it is really a valid subsong identifier. closes #792.
nenolod
parents:
2505
diff
changeset
|
347 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
|
348 *tmp = '\0'; |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
349 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
350 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
|
351 g_free(tmp_uri); |
2313 | 352 |
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
353 if (!fd) { |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
354 printf("Unreadable to read from %s, giving up.\n", filename_proxy); |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
355 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
|
356 return NULL; |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
357 } |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
358 |
2313 | 359 ext = strrchr(filename_proxy, '.') + 1; |
360 | |
2569 | 361 use_ext_filter = |
362 (fd != NULL && (!g_strncasecmp(filename, "/", 1) || | |
363 !g_strncasecmp(filename, "file://", 7))) ? TRUE : FALSE; | |
2313 | 364 |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
365 mimetype = vfs_get_metadata(fd, "content-type"); |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
366 if ((ip = mime_get_plugin(mimetype)) != NULL) |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
367 { |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
368 g_free(filename_proxy); |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
369 vfs_fclose(fd); |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
370 return ip; |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
371 } |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
372 |
2313 | 373 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
374 { | |
375 ip = INPUT_PLUGIN(node->data); | |
376 | |
377 if (!ip || !input_is_enabled(ip->filename)) | |
378 continue; | |
379 | |
2342
f140d0a27093
[svn] - use vfs_rewind() instead of vfs_fseek(fd, 0, seek_set) which was wrong
nenolod
parents:
2331
diff
changeset
|
380 vfs_rewind(fd); |
2313 | 381 |
2569 | 382 if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL && |
383 ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE) | |
2313 | 384 { |
385 gint i; | |
386 gboolean is_our_ext = FALSE; | |
387 | |
388 for (i = 0; ip->vfs_extensions[i] != NULL; i++) | |
389 { | |
390 if (str_has_prefix_nocase(ext, ip->vfs_extensions[i])) | |
2331 | 391 { |
392 is_our_ext = TRUE; | |
393 break; | |
394 } | |
2313 | 395 } |
396 | |
397 /* not a plugin that supports this extension */ | |
398 if (is_our_ext == FALSE) | |
399 continue; | |
400 } | |
401 | |
2427
64948ea58c53
[svn] - revise logic of r3808 so that cdaudio works again.
yaz
parents:
2420
diff
changeset
|
402 if (fd && ip->is_our_file_from_vfs != NULL) |
2313 | 403 { |
404 ret = ip->is_our_file_from_vfs(filename_proxy, fd); | |
405 | |
406 if (ret > 0) | |
407 { | |
408 g_free(filename_proxy); | |
409 vfs_fclose(fd); | |
410 return ip; | |
411 } | |
412 } | |
413 else if (ip->is_our_file != NULL) | |
414 { | |
415 ret = ip->is_our_file(filename_proxy); | |
416 | |
417 if (ret > 0) | |
418 { | |
419 g_free(filename_proxy); | |
420 vfs_fclose(fd); | |
421 return ip; | |
422 } | |
423 } | |
424 | |
2331 | 425 if (ret <= -1) |
426 break; | |
2313 | 427 } |
428 | |
429 g_free(filename_proxy); | |
430 | |
431 vfs_fclose(fd); | |
432 | |
433 return NULL; | |
434 } | |
435 | |
436 | |
437 void | |
438 input_set_eq(gint on, gfloat preamp, gfloat * bands) | |
439 { | |
440 if (!ip_data.playing) | |
441 return; | |
442 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
443 if (!get_current_input_playback()) |
2313 | 444 return; |
445 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
446 if (get_current_input_playback()->plugin->set_eq) |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
447 get_current_input_playback()->plugin->set_eq(on, preamp, bands); |
2313 | 448 } |
449 | |
450 void | |
451 input_get_song_info(const gchar * filename, gchar ** title, gint * length) | |
452 { | |
453 InputPlugin *ip = NULL; | |
454 BmpTitleInput *input; | |
455 gchar *tmp = NULL, *ext; | |
456 gchar *filename_proxy; | |
457 | |
458 g_return_if_fail(filename != NULL); | |
459 g_return_if_fail(title != NULL); | |
460 g_return_if_fail(length != NULL); | |
461 | |
462 filename_proxy = g_strdup(filename); | |
463 | |
464 ip = input_check_file(filename_proxy, FALSE); | |
465 | |
2331 | 466 if (ip && ip->get_song_info) { |
2313 | 467 ip->get_song_info(filename_proxy, &tmp, length); |
468 *title = str_to_utf8(tmp); | |
469 g_free(tmp); | |
470 } | |
471 else { | |
472 input = bmp_title_input_new(); | |
473 | |
474 tmp = g_strdup(filename); | |
475 if ((ext = strrchr(tmp, '.'))) | |
476 *ext = '\0'; | |
477 | |
478 input->file_name = g_path_get_basename(tmp); | |
479 input->file_ext = ext ? ext + 1 : NULL; | |
480 input->file_path = g_path_get_dirname(tmp); | |
481 | |
482 if ((tmp = xmms_get_titlestring(xmms_get_gentitle_format(), input))) { | |
483 (*title) = str_to_utf8(tmp); | |
484 g_free(tmp); | |
485 } | |
486 else { | |
487 (*title) = filename_to_utf8(input->file_name); | |
488 } | |
489 | |
490 (*length) = -1; | |
491 | |
492 bmp_title_input_free(input); | |
493 input = NULL; | |
494 } | |
495 | |
496 g_free(filename_proxy); | |
497 } | |
498 | |
499 TitleInput * | |
500 input_get_song_tuple(const gchar * filename) | |
501 { | |
502 InputPlugin *ip = NULL; | |
503 TitleInput *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
|
504 gchar *ext = NULL; |
2313 | 505 gchar *filename_proxy; |
506 | |
507 if (filename == NULL) | |
2331 | 508 return NULL; |
2313 | 509 |
510 filename_proxy = g_strdup(filename); | |
511 | |
512 ip = input_check_file(filename_proxy, FALSE); | |
513 | |
2331 | 514 if (ip && ip->get_song_tuple) |
2313 | 515 input = ip->get_song_tuple(filename_proxy); |
2331 | 516 else |
517 { | |
2313 | 518 input = bmp_title_input_new(); |
519 | |
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
|
520 ext = strrchr(filename, '.'); |
2313 | 521 |
2331 | 522 input->track_name = NULL; |
523 input->length = -1; | |
524 input_get_song_info(filename, &input->track_name, &input->length); | |
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
|
525 input->file_name = g_path_get_basename(filename); |
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
|
526 input->file_ext = ( ( ext != NULL ) ? g_strdup(ext + 1) : NULL ); |
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
|
527 input->file_path = g_path_get_dirname(filename); |
2313 | 528 } |
529 | |
2569 | 530 g_free(filename_proxy); |
2313 | 531 return input; |
532 } | |
533 | |
534 static void | |
535 input_general_file_info_box(const gchar * filename, InputPlugin * ip) | |
536 { | |
537 GtkWidget *window, *vbox; | |
538 GtkWidget *label, *filename_hbox, *filename_entry; | |
539 GtkWidget *bbox, *cancel; | |
540 | |
541 gchar *title, *fileinfo, *basename, *iplugin; | |
542 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
|
543 gchar *realfn = NULL; |
2313 | 544 |
545 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
546 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
547 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); | |
548 | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
549 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
|
550 basename = g_path_get_basename(realfn ? realfn : filename); |
2313 | 551 fileinfo = filename_to_utf8(basename); |
552 title = g_strdup_printf(_("audacious: %s"), fileinfo); | |
553 | |
554 gtk_window_set_title(GTK_WINDOW(window), title); | |
555 | |
556 g_free(title); | |
557 g_free(fileinfo); | |
558 g_free(basename); | |
559 | |
560 gtk_container_set_border_width(GTK_CONTAINER(window), 10); | |
561 | |
562 vbox = gtk_vbox_new(FALSE, 10); | |
563 gtk_container_add(GTK_CONTAINER(window), vbox); | |
564 | |
565 filename_hbox = gtk_hbox_new(FALSE, 5); | |
566 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0); | |
567 | |
568 label = gtk_label_new(_("Filename:")); | |
569 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0); | |
570 | |
571 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
|
572 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
|
573 g_free(realfn); realfn = NULL; |
2313 | 574 |
575 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8); | |
576 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE); | |
577 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0); | |
578 | |
579 g_free(filename_utf8); | |
580 | |
581 if (ip) | |
582 if (ip->description) | |
583 iplugin = ip->description; | |
584 else | |
585 iplugin = ip->filename; | |
586 else | |
587 iplugin = _("No input plugin recognized this file"); | |
588 | |
589 title = g_strdup_printf(_("Input plugin: %s"), iplugin); | |
590 | |
591 label = gtk_label_new(title); | |
592 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
593 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
594 g_free(title); | |
595 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0); | |
596 | |
597 bbox = gtk_hbutton_box_new(); | |
598 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
599 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
600 | |
601 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
602 g_signal_connect_swapped(G_OBJECT(cancel), "clicked", | |
603 GTK_SIGNAL_FUNC(gtk_widget_destroy), | |
604 GTK_OBJECT(window)); | |
605 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
606 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
607 | |
608 gtk_widget_show_all(window); | |
609 } | |
610 | |
611 void | |
612 input_file_info_box(const gchar * filename) | |
613 { | |
614 InputPlugin *ip; | |
615 gchar *filename_proxy; | |
616 | |
617 filename_proxy = g_strdup(filename); | |
618 | |
619 ip = input_check_file(filename_proxy, FALSE); | |
620 | |
621 if (ip->file_info_box) | |
622 ip->file_info_box(filename_proxy); | |
623 else | |
624 input_general_file_info_box(filename, ip); | |
625 | |
626 input_general_file_info_box(filename, NULL); | |
627 g_free(filename_proxy); | |
628 } | |
629 | |
630 GList * | |
631 input_scan_dir(const gchar * path) | |
632 { | |
633 GList *node, *result = NULL; | |
634 InputPlugin *ip; | |
635 gchar *path_proxy; | |
636 | |
637 g_return_val_if_fail(path != NULL, NULL); | |
638 | |
639 if (*path == '/') | |
640 while (path[1] == '/') | |
641 path++; | |
642 | |
643 path_proxy = g_strdup(path); | |
644 | |
645 for (node = get_input_list(); node; node = g_list_next(node)) { | |
646 ip = INPUT_PLUGIN(node->data); | |
647 | |
648 if (!ip) | |
649 continue; | |
650 | |
651 if (!ip->scan_dir) | |
652 continue; | |
653 | |
654 if (!input_is_enabled(ip->filename)) | |
655 continue; | |
656 | |
657 if ((result = ip->scan_dir(path_proxy))) | |
658 break; | |
659 } | |
660 | |
661 g_free(path_proxy); | |
662 | |
663 return result; | |
664 } | |
665 | |
666 void | |
667 input_get_volume(gint * l, gint * r) | |
668 { | |
669 *l = -1; | |
670 *r = -1; | |
671 if (playback_get_playing()) { | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
672 if (get_current_input_playback() && |
2439
f2b3d6428b67
[svn] Allow input plugin that implements get_volume to punt to the output plugin.
iabervon
parents:
2437
diff
changeset
|
673 get_current_input_playback()->plugin->get_volume && |
f2b3d6428b67
[svn] Allow input plugin that implements get_volume to punt to the output plugin.
iabervon
parents:
2437
diff
changeset
|
674 get_current_input_playback()->plugin->get_volume(l, r)) { |
2313 | 675 return; |
676 } | |
677 } | |
678 output_get_volume(l, r); | |
679 } | |
680 | |
681 void | |
682 input_set_volume(gint l, gint r) | |
683 { | |
2505 | 684 gint h_vol[2]; |
685 | |
2569 | 686 if (playback_get_playing() && |
687 get_current_input_playback() && | |
688 get_current_input_playback()->plugin->set_volume && | |
689 get_current_input_playback()->plugin->set_volume(l, r)) | |
690 return; | |
691 | |
2313 | 692 output_set_volume(l, r); |
2505 | 693 |
694 h_vol[0] = l; | |
695 h_vol[1] = r; | |
696 hook_call("volume set", h_vol); | |
2313 | 697 } |
698 | |
699 void | |
700 input_update_vis(gint time) | |
701 { | |
702 GList *node; | |
703 VisNode *vis = NULL, *visnext = NULL; | |
704 gboolean found = FALSE; | |
705 | |
706 G_LOCK(vis_mutex); | |
707 node = vis_list; | |
708 while (g_list_next(node) && !found) { | |
709 visnext = g_list_next(node)->data; | |
710 vis = node->data; | |
711 | |
712 if (vis->time >= time) | |
713 break; | |
714 | |
715 vis_list = g_list_delete_link(vis_list, node); | |
716 | |
717 if (visnext->time >= time) { | |
718 found = TRUE; | |
719 break; | |
720 } | |
721 g_free(vis); | |
722 node = vis_list; | |
723 } | |
724 G_UNLOCK(vis_mutex); | |
725 | |
726 if (found) { | |
727 vis_send_data(vis->data, vis->nch, vis->length); | |
728 g_free(vis); | |
729 } | |
730 else | |
731 vis_send_data(NULL, 0, 0); | |
732 } | |
733 | |
734 | |
735 gchar * | |
736 input_get_info_text(void) | |
737 { | |
738 return g_strdup(input_info_text); | |
739 } | |
740 | |
741 void | |
742 input_set_info_text(const gchar * text) | |
743 { | |
744 g_free(input_info_text); | |
745 input_info_text = g_strdup(text); | |
746 mainwin_set_info_text(); | |
747 } | |
748 | |
749 void | |
750 input_set_status_buffering(gboolean status) | |
751 { | |
752 if (!playback_get_playing()) | |
753 return; | |
754 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
755 if (!get_current_input_playback()) |
2313 | 756 return; |
757 | |
758 ip_data.buffering = status; | |
759 | |
760 g_return_if_fail(mainwin_playstatus != NULL); | |
761 | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
762 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
|
763 UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status = STATUS_PLAY; |
2313 | 764 |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
765 ui_skinned_playstatus_set_buffering(mainwin_playstatus, ip_data.buffering); |
2313 | 766 } |
767 | |
768 void | |
769 input_about(gint index) | |
770 { | |
771 InputPlugin *ip; | |
772 | |
773 ip = g_list_nth(ip_data.input_list, index)->data; | |
774 if (ip && ip->about) | |
775 ip->about(); | |
776 } | |
777 | |
778 void | |
779 input_configure(gint index) | |
780 { | |
781 InputPlugin *ip; | |
782 | |
783 ip = g_list_nth(ip_data.input_list, index)->data; | |
784 if (ip && ip->configure) | |
785 ip->configure(); | |
786 } |