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
|
|
12 * the Free Software Foundation; under version 2 of the License.
|
|
13 *
|
|
14 * This program is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
22 */
|
|
23
|
|
24 #ifdef HAVE_CONFIG_H
|
|
25 # include "config.h"
|
|
26 #endif
|
|
27
|
|
28 #include <glib.h>
|
|
29 #include <glib/gi18n.h>
|
|
30 #include <gtk/gtk.h>
|
|
31 #include <string.h>
|
|
32
|
|
33 #include "fft.h"
|
|
34 #include "input.h"
|
|
35 #include "main.h"
|
|
36 #include "ui_main.h"
|
|
37 #include "output.h"
|
|
38 #include "util.h"
|
|
39 #include "visualization.h"
|
|
40 #include "playback.h"
|
|
41 #include "widgets/widgetcore.h"
|
|
42 #include "pluginenum.h"
|
|
43 #include "titlestring.h"
|
|
44
|
|
45 #include "libaudacious/util.h"
|
|
46
|
|
47 G_LOCK_DEFINE_STATIC(vis_mutex);
|
|
48
|
|
49 struct _VisNode {
|
|
50 gint time;
|
|
51 gint nch;
|
|
52 gint length; /* number of samples per channel */
|
|
53 gint16 data[2][512];
|
|
54 };
|
|
55
|
|
56 typedef struct _VisNode VisNode;
|
|
57
|
|
58
|
|
59 InputPluginData ip_data = {
|
|
60 NULL,
|
|
61 NULL,
|
|
62 FALSE,
|
|
63 FALSE,
|
|
64 FALSE,
|
|
65 FALSE,
|
|
66 NULL
|
|
67 };
|
|
68
|
|
69 static GList *vis_list = NULL;
|
|
70
|
|
71 gchar *input_info_text = NULL;
|
|
72
|
|
73 InputPlugin *
|
|
74 get_current_input_plugin(void)
|
|
75 {
|
|
76 return ip_data.current_input_plugin;
|
|
77 }
|
|
78
|
|
79 void
|
|
80 set_current_input_plugin(InputPlugin * ip)
|
|
81 {
|
|
82 ip_data.current_input_plugin = ip;
|
|
83 }
|
|
84
|
|
85 GList *
|
|
86 get_input_list(void)
|
|
87 {
|
|
88 return ip_data.input_list;
|
|
89 }
|
|
90
|
|
91
|
|
92 gboolean
|
|
93 input_is_enabled(const gchar * filename)
|
|
94 {
|
|
95 gchar *basename = g_path_get_basename(filename);
|
|
96 gint enabled;
|
|
97
|
|
98 enabled = GPOINTER_TO_INT(g_hash_table_lookup(plugin_matrix, basename));
|
|
99 g_free(basename);
|
|
100
|
|
101 return enabled;
|
|
102 }
|
|
103
|
|
104 static void
|
|
105 disabled_iplugins_foreach_func(const gchar * name,
|
|
106 gboolean enabled,
|
|
107 GString * list)
|
|
108 {
|
|
109 g_return_if_fail(list != NULL);
|
|
110
|
|
111 if (enabled)
|
|
112 return;
|
|
113
|
|
114 if (list->len > 0)
|
|
115 g_string_append(list, ":");
|
|
116
|
|
117 g_string_append(list, name);
|
|
118 }
|
|
119
|
|
120 gchar *
|
|
121 input_stringify_disabled_list(void)
|
|
122 {
|
|
123 GString *disabled_list;
|
|
124
|
|
125 disabled_list = g_string_new("");
|
|
126 g_hash_table_foreach(plugin_matrix,
|
|
127 (GHFunc) disabled_iplugins_foreach_func,
|
|
128 disabled_list);
|
|
129
|
|
130 return g_string_free(disabled_list, FALSE);
|
|
131 }
|
|
132
|
|
133 void
|
|
134 free_vis_data(void)
|
|
135 {
|
|
136 G_LOCK(vis_mutex);
|
|
137 g_list_foreach(vis_list, (GFunc) g_free, NULL);
|
|
138 g_list_free(vis_list);
|
|
139 vis_list = NULL;
|
|
140 G_UNLOCK(vis_mutex);
|
|
141 }
|
|
142
|
|
143 static void
|
|
144 convert_to_s16_ne(AFormat fmt, gpointer ptr, gint16 * left,
|
|
145 gint16 * right, gint nch, gint max)
|
|
146 {
|
|
147 gint16 *ptr16;
|
|
148 guint16 *ptru16;
|
|
149 guint8 *ptru8;
|
|
150 gint i;
|
|
151
|
|
152 switch (fmt) {
|
|
153 case FMT_U8:
|
|
154 ptru8 = ptr;
|
|
155 if (nch == 1)
|
|
156 for (i = 0; i < max; i++)
|
|
157 left[i] = ((*ptru8++) ^ 128) << 8;
|
|
158 else
|
|
159 for (i = 0; i < max; i++) {
|
|
160 left[i] = ((*ptru8++) ^ 128) << 8;
|
|
161 right[i] = ((*ptru8++) ^ 128) << 8;
|
|
162 }
|
|
163 break;
|
|
164 case FMT_S8:
|
|
165 ptru8 = ptr;
|
|
166 if (nch == 1)
|
|
167 for (i = 0; i < max; i++)
|
|
168 left[i] = (*ptru8++) << 8;
|
|
169 else
|
|
170 for (i = 0; i < max; i++) {
|
|
171 left[i] = (*ptru8++) << 8;
|
|
172 right[i] = (*ptru8++) << 8;
|
|
173 }
|
|
174 break;
|
|
175 case FMT_U16_LE:
|
|
176 ptru16 = ptr;
|
|
177 if (nch == 1)
|
|
178 for (i = 0; i < max; i++, ptru16++)
|
|
179 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768;
|
|
180 else
|
|
181 for (i = 0; i < max; i++) {
|
|
182 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768;
|
|
183 ptru16++;
|
|
184 right[i] = GUINT16_FROM_LE(*ptru16) ^ 32768;
|
|
185 ptru16++;
|
|
186 }
|
|
187 break;
|
|
188 case FMT_U16_BE:
|
|
189 ptru16 = ptr;
|
|
190 if (nch == 1)
|
|
191 for (i = 0; i < max; i++, ptru16++)
|
|
192 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768;
|
|
193 else
|
|
194 for (i = 0; i < max; i++) {
|
|
195 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768;
|
|
196 ptru16++;
|
|
197 right[i] = GUINT16_FROM_BE(*ptru16) ^ 32768;
|
|
198 ptru16++;
|
|
199 }
|
|
200 break;
|
|
201 case FMT_U16_NE:
|
|
202 ptru16 = ptr;
|
|
203 if (nch == 1)
|
|
204 for (i = 0; i < max; i++)
|
|
205 left[i] = (*ptru16++) ^ 32768;
|
|
206 else
|
|
207 for (i = 0; i < max; i++) {
|
|
208 left[i] = (*ptru16++) ^ 32768;
|
|
209 right[i] = (*ptru16++) ^ 32768;
|
|
210 }
|
|
211 break;
|
|
212 case FMT_S16_LE:
|
|
213 ptr16 = ptr;
|
|
214 if (nch == 1)
|
|
215 for (i = 0; i < max; i++, ptr16++)
|
|
216 left[i] = GINT16_FROM_LE(*ptr16);
|
|
217 else
|
|
218 for (i = 0; i < max; i++) {
|
|
219 left[i] = GINT16_FROM_LE(*ptr16);
|
|
220 ptr16++;
|
|
221 right[i] = GINT16_FROM_LE(*ptr16);
|
|
222 ptr16++;
|
|
223 }
|
|
224 break;
|
|
225 case FMT_S16_BE:
|
|
226 ptr16 = ptr;
|
|
227 if (nch == 1)
|
|
228 for (i = 0; i < max; i++, ptr16++)
|
|
229 left[i] = GINT16_FROM_BE(*ptr16);
|
|
230 else
|
|
231 for (i = 0; i < max; i++) {
|
|
232 left[i] = GINT16_FROM_BE(*ptr16);
|
|
233 ptr16++;
|
|
234 right[i] = GINT16_FROM_BE(*ptr16);
|
|
235 ptr16++;
|
|
236 }
|
|
237 break;
|
|
238 case FMT_S16_NE:
|
|
239 ptr16 = ptr;
|
|
240 if (nch == 1)
|
|
241 for (i = 0; i < max; i++)
|
|
242 left[i] = (*ptr16++);
|
|
243 else
|
|
244 for (i = 0; i < max; i++) {
|
|
245 left[i] = (*ptr16++);
|
|
246 right[i] = (*ptr16++);
|
|
247 }
|
|
248 break;
|
|
249 }
|
|
250 }
|
|
251
|
|
252 InputVisType
|
|
253 input_get_vis_type()
|
|
254 {
|
|
255 return INPUT_VIS_OFF;
|
|
256 }
|
|
257
|
|
258 void
|
|
259 input_add_vis(gint time, guchar * s, InputVisType type)
|
|
260 {
|
|
261 g_warning("plugin uses obsoleted input_add_vis()");
|
|
262 }
|
|
263
|
|
264 void
|
|
265 input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, gpointer ptr)
|
|
266 {
|
|
267 VisNode *vis_node;
|
|
268 gint max;
|
|
269
|
|
270 max = length / nch;
|
|
271 if (fmt == FMT_U16_LE || fmt == FMT_U16_BE || fmt == FMT_U16_NE ||
|
|
272 fmt == FMT_S16_LE || fmt == FMT_S16_BE || fmt == FMT_S16_NE)
|
|
273 max /= 2;
|
|
274 max = CLAMP(max, 0, 512);
|
|
275
|
|
276 vis_node = g_new0(VisNode, 1);
|
|
277 vis_node->time = time;
|
|
278 vis_node->nch = nch;
|
|
279 vis_node->length = max;
|
|
280 convert_to_s16_ne(fmt, ptr, vis_node->data[0], vis_node->data[1], nch,
|
|
281 max);
|
|
282
|
|
283 G_LOCK(vis_mutex);
|
|
284 vis_list = g_list_append(vis_list, vis_node);
|
|
285 G_UNLOCK(vis_mutex);
|
|
286 }
|
|
287
|
|
288 void
|
|
289 input_dont_show_warning(GtkObject * object, gpointer user_data)
|
|
290 {
|
|
291 *((gboolean *) user_data) =
|
|
292 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object));
|
|
293 }
|
|
294
|
|
295
|
|
296 void
|
|
297 input_show_unplayable_files(const gchar * filename)
|
|
298 {
|
|
299 static GtkWidget *dialog = NULL;
|
|
300 static GtkListStore *store = NULL;
|
|
301
|
|
302 const gchar *markup =
|
|
303 N_("<b><big>Unable to play files.</big></b>\n\n"
|
|
304 "The following files could not be played. Please check that:\n"
|
|
305 "1. they are accessible.\n"
|
|
306 "2. you have enabled the media plugins required.");
|
|
307
|
|
308 GtkTreeIter iter;
|
|
309
|
|
310 gchar *filename_utf8;
|
|
311
|
|
312 if (!dialog) {
|
|
313 GtkWidget *vbox, *check;
|
|
314 GtkWidget *expander;
|
|
315 GtkWidget *scrolled, *treeview;
|
|
316 GtkCellRenderer *renderer;
|
|
317
|
|
318 dialog =
|
|
319 gtk_message_dialog_new_with_markup(GTK_WINDOW(mainwin),
|
|
320 GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
321 GTK_MESSAGE_ERROR,
|
|
322 GTK_BUTTONS_OK,
|
|
323 _(markup));
|
|
324
|
|
325 vbox = gtk_vbox_new(FALSE, 6);
|
|
326
|
|
327 check = gtk_check_button_new_with_label
|
|
328 (_("Don't show this warning anymore"));
|
|
329
|
|
330 expander = gtk_expander_new_with_mnemonic(_("Show more _details"));
|
|
331
|
|
332 scrolled = gtk_scrolled_window_new(NULL, NULL);
|
|
333 gtk_container_add(GTK_CONTAINER(expander), scrolled);
|
|
334
|
|
335 store = gtk_list_store_new(1, G_TYPE_STRING);
|
|
336
|
|
337 treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store));
|
|
338 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE);
|
|
339 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled),
|
|
340 treeview);
|
|
341
|
|
342 renderer = gtk_cell_renderer_text_new();
|
|
343 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(treeview),
|
|
344 -1, _("Filename"),
|
|
345 renderer,
|
|
346 "text", 0,
|
|
347 NULL);
|
|
348
|
|
349 vbox = GTK_DIALOG(dialog)->vbox;
|
|
350 gtk_box_pack_start(GTK_BOX(vbox), check, FALSE, FALSE, 0);
|
|
351 gtk_box_pack_start(GTK_BOX(vbox), expander, TRUE, TRUE, 0);
|
|
352
|
|
353 g_signal_connect(dialog, "response",
|
|
354 G_CALLBACK(gtk_widget_destroy),
|
|
355 dialog);
|
|
356 g_signal_connect(dialog, "destroy",
|
|
357 G_CALLBACK(gtk_widget_destroyed),
|
|
358 &dialog);
|
|
359 g_signal_connect(check, "clicked",
|
|
360 G_CALLBACK(input_dont_show_warning),
|
|
361 &cfg.warn_about_unplayables);
|
|
362
|
|
363 gtk_widget_show_all(dialog);
|
|
364 }
|
|
365
|
|
366 gtk_window_present(GTK_WINDOW(dialog));
|
|
367
|
|
368 filename_utf8 = filename_to_utf8(filename);
|
|
369 gtk_list_store_append(store, &iter);
|
|
370 gtk_list_store_set(store, &iter, 0, filename_utf8, -1);
|
|
371 g_free(filename_utf8);
|
|
372 }
|
|
373
|
|
374
|
|
375 void
|
|
376 input_file_not_playable(const gchar * filename)
|
|
377 {
|
|
378 if (cfg.warn_about_unplayables)
|
|
379 input_show_unplayable_files(filename);
|
|
380 }
|
|
381
|
|
382 /*
|
|
383 * input_check_file()
|
|
384 *
|
|
385 * Inputs:
|
|
386 * filename to check recursively against input plugins
|
|
387 * whether or not to show an error
|
|
388 *
|
|
389 * Outputs:
|
|
390 * pointer to input plugin which can handle this file
|
|
391 * otherwise, NULL
|
|
392 *
|
|
393 * (the previous code returned a boolean of whether or not we can
|
|
394 * play the file... even WORSE for performance)
|
|
395 *
|
|
396 * Side Effects:
|
|
397 * various input plugins open the file and probe it
|
|
398 * -- this can have very ugly effects performance wise on streams
|
|
399 *
|
|
400 * --nenolod, Dec 31 2005
|
|
401 *
|
|
402 * Rewritten to use NewVFS probing, semantics are still basically the same.
|
|
403 *
|
|
404 * --nenolod, Dec 5 2006
|
|
405 *
|
|
406 * Adapted to use the NewVFS extension probing system if enabled.
|
|
407 *
|
|
408 * --nenolod, Dec 12 2006
|
|
409 */
|
|
410 InputPlugin *
|
|
411 input_check_file(const gchar * filename, gboolean show_warning)
|
|
412 {
|
|
413 VFSFile *fd;
|
|
414 GList *node;
|
|
415 InputPlugin *ip;
|
|
416 gchar *filename_proxy;
|
|
417 gint ret = 1;
|
|
418 gchar *ext;
|
|
419 gboolean use_ext_filter;
|
|
420
|
|
421 filename_proxy = g_strdup(filename);
|
|
422 fd = vfs_fopen(filename, "rb");
|
|
423
|
|
424 ext = strrchr(filename_proxy, '.') + 1;
|
|
425
|
|
426 use_ext_filter = (fd != NULL &&
|
|
427 (!g_strcasecmp(fd->base->uri_id, "/") ||
|
|
428 !g_strcasecmp(fd->base->uri_id, "file"))) ? TRUE : FALSE;
|
|
429
|
|
430 for (node = get_input_list(); node != NULL; node = g_list_next(node))
|
|
431 {
|
|
432 ip = INPUT_PLUGIN(node->data);
|
|
433
|
|
434 if (!ip || !input_is_enabled(ip->filename))
|
|
435 continue;
|
|
436
|
|
437 vfs_fseek(fd, 0, SEEK_SET);
|
|
438
|
|
439 if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL
|
|
440 && ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE)
|
|
441 {
|
|
442 gint i;
|
|
443 gboolean is_our_ext = FALSE;
|
|
444
|
|
445 for (i = 0; ip->vfs_extensions[i] != NULL; i++)
|
|
446 {
|
|
447 if (str_has_prefix_nocase(ext, ip->vfs_extensions[i]))
|
|
448 {
|
|
449 is_our_ext = TRUE;
|
|
450 break;
|
|
451 }
|
|
452 }
|
|
453
|
|
454 /* not a plugin that supports this extension */
|
|
455 if (is_our_ext == FALSE)
|
|
456 continue;
|
|
457 }
|
|
458
|
|
459 if (ip->is_our_file_from_vfs != NULL)
|
|
460 {
|
|
461 ret = ip->is_our_file_from_vfs(filename_proxy, fd);
|
|
462
|
|
463 if (ret > 0)
|
|
464 {
|
|
465 g_free(filename_proxy);
|
|
466 vfs_fclose(fd);
|
|
467 return ip;
|
|
468 }
|
|
469 }
|
|
470 else if (ip->is_our_file != NULL)
|
|
471 {
|
|
472 ret = ip->is_our_file(filename_proxy);
|
|
473
|
|
474 if (ret > 0)
|
|
475 {
|
|
476 g_free(filename_proxy);
|
|
477 vfs_fclose(fd);
|
|
478 return ip;
|
|
479 }
|
|
480 }
|
|
481
|
|
482 if (ret <= -1)
|
|
483 break;
|
|
484 }
|
|
485
|
|
486 g_free(filename_proxy);
|
|
487
|
|
488 if (show_warning && ret != -1)
|
|
489 input_file_not_playable(filename);
|
|
490
|
|
491 vfs_fclose(fd);
|
|
492
|
|
493 return NULL;
|
|
494 }
|
|
495
|
|
496
|
|
497 void
|
|
498 input_set_eq(gint on, gfloat preamp, gfloat * bands)
|
|
499 {
|
|
500 if (!ip_data.playing)
|
|
501 return;
|
|
502
|
|
503 if (!get_current_input_plugin())
|
|
504 return;
|
|
505
|
|
506 if (get_current_input_plugin()->set_eq)
|
|
507 get_current_input_plugin()->set_eq(on, preamp, bands);
|
|
508 }
|
|
509
|
|
510 void
|
|
511 input_get_song_info(const gchar * filename, gchar ** title, gint * length)
|
|
512 {
|
|
513 InputPlugin *ip = NULL;
|
|
514 BmpTitleInput *input;
|
|
515 GList *node;
|
|
516 gchar *tmp = NULL, *ext;
|
|
517 gchar *filename_proxy;
|
|
518
|
|
519 g_return_if_fail(filename != NULL);
|
|
520 g_return_if_fail(title != NULL);
|
|
521 g_return_if_fail(length != NULL);
|
|
522
|
|
523 filename_proxy = g_strdup(filename);
|
|
524
|
|
525 ip = input_check_file(filename_proxy, FALSE);
|
|
526
|
|
527 if (ip && node && ip->get_song_info) {
|
|
528 ip->get_song_info(filename_proxy, &tmp, length);
|
|
529 *title = str_to_utf8(tmp);
|
|
530 g_free(tmp);
|
|
531 }
|
|
532 else {
|
|
533 input = bmp_title_input_new();
|
|
534
|
|
535 tmp = g_strdup(filename);
|
|
536 if ((ext = strrchr(tmp, '.')))
|
|
537 *ext = '\0';
|
|
538
|
|
539 input->file_name = g_path_get_basename(tmp);
|
|
540 input->file_ext = ext ? ext + 1 : NULL;
|
|
541 input->file_path = g_path_get_dirname(tmp);
|
|
542
|
|
543 if ((tmp = xmms_get_titlestring(xmms_get_gentitle_format(), input))) {
|
|
544 (*title) = str_to_utf8(tmp);
|
|
545 g_free(tmp);
|
|
546 }
|
|
547 else {
|
|
548 (*title) = filename_to_utf8(input->file_name);
|
|
549 }
|
|
550
|
|
551 (*length) = -1;
|
|
552
|
|
553 bmp_title_input_free(input);
|
|
554 input = NULL;
|
|
555 }
|
|
556
|
|
557 g_free(filename_proxy);
|
|
558 }
|
|
559
|
|
560 TitleInput *
|
|
561 input_get_song_tuple(const gchar * filename)
|
|
562 {
|
|
563 InputPlugin *ip = NULL;
|
|
564 TitleInput *input;
|
|
565 GList *node;
|
|
566 gchar *tmp = NULL, *ext;
|
|
567 gchar *filename_proxy;
|
|
568
|
|
569 if (filename == NULL)
|
|
570 return NULL;
|
|
571
|
|
572 filename_proxy = g_strdup(filename);
|
|
573
|
|
574 ip = input_check_file(filename_proxy, FALSE);
|
|
575
|
|
576 if (ip && node && ip->get_song_tuple)
|
|
577 input = ip->get_song_tuple(filename_proxy);
|
|
578 else {
|
|
579 input = bmp_title_input_new();
|
|
580
|
|
581 tmp = g_strdup(filename);
|
|
582 if ((ext = strrchr(tmp, '.')))
|
|
583 *ext = '\0';
|
|
584
|
|
585 input->track_name = NULL;
|
|
586 input->length = -1;
|
|
587 input_get_song_info(filename, &input->track_name, &input->length);
|
|
588 input->file_name = g_path_get_basename(tmp);
|
|
589 input->file_ext = ext ? ext + 1 : NULL;
|
|
590 input->file_path = g_path_get_dirname(tmp);
|
|
591 }
|
|
592
|
|
593 return input;
|
|
594 }
|
|
595
|
|
596 static void
|
|
597 input_general_file_info_box(const gchar * filename, InputPlugin * ip)
|
|
598 {
|
|
599 GtkWidget *window, *vbox;
|
|
600 GtkWidget *label, *filename_hbox, *filename_entry;
|
|
601 GtkWidget *bbox, *cancel;
|
|
602
|
|
603 gchar *title, *fileinfo, *basename, *iplugin;
|
|
604 gchar *filename_utf8;
|
|
605
|
|
606 window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
|
607 gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
|
|
608 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
|
|
609
|
|
610 basename = g_path_get_basename(filename);
|
|
611 fileinfo = filename_to_utf8(basename);
|
|
612 title = g_strdup_printf(_("audacious: %s"), fileinfo);
|
|
613
|
|
614 gtk_window_set_title(GTK_WINDOW(window), title);
|
|
615
|
|
616 g_free(title);
|
|
617 g_free(fileinfo);
|
|
618 g_free(basename);
|
|
619
|
|
620 gtk_container_set_border_width(GTK_CONTAINER(window), 10);
|
|
621
|
|
622 vbox = gtk_vbox_new(FALSE, 10);
|
|
623 gtk_container_add(GTK_CONTAINER(window), vbox);
|
|
624
|
|
625 filename_hbox = gtk_hbox_new(FALSE, 5);
|
|
626 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0);
|
|
627
|
|
628 label = gtk_label_new(_("Filename:"));
|
|
629 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0);
|
|
630
|
|
631 filename_entry = gtk_entry_new();
|
|
632 filename_utf8 = filename_to_utf8(filename);
|
|
633
|
|
634 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8);
|
|
635 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE);
|
|
636 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0);
|
|
637
|
|
638 g_free(filename_utf8);
|
|
639
|
|
640 if (ip)
|
|
641 if (ip->description)
|
|
642 iplugin = ip->description;
|
|
643 else
|
|
644 iplugin = ip->filename;
|
|
645 else
|
|
646 iplugin = _("No input plugin recognized this file");
|
|
647
|
|
648 title = g_strdup_printf(_("Input plugin: %s"), iplugin);
|
|
649
|
|
650 label = gtk_label_new(title);
|
|
651 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
|
|
652 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT);
|
|
653 g_free(title);
|
|
654 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0);
|
|
655
|
|
656 bbox = gtk_hbutton_box_new();
|
|
657 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
|
|
658 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
|
|
659
|
|
660 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
|
|
661 g_signal_connect_swapped(G_OBJECT(cancel), "clicked",
|
|
662 GTK_SIGNAL_FUNC(gtk_widget_destroy),
|
|
663 GTK_OBJECT(window));
|
|
664 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT);
|
|
665 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0);
|
|
666
|
|
667 gtk_widget_show_all(window);
|
|
668 }
|
|
669
|
|
670 void
|
|
671 input_file_info_box(const gchar * filename)
|
|
672 {
|
|
673 GList *node;
|
|
674 InputPlugin *ip;
|
|
675 gchar *filename_proxy;
|
|
676
|
|
677 filename_proxy = g_strdup(filename);
|
|
678
|
|
679 ip = input_check_file(filename_proxy, FALSE);
|
|
680
|
|
681 if (ip->file_info_box)
|
|
682 ip->file_info_box(filename_proxy);
|
|
683 else
|
|
684 input_general_file_info_box(filename, ip);
|
|
685
|
|
686 input_general_file_info_box(filename, NULL);
|
|
687 g_free(filename_proxy);
|
|
688 }
|
|
689
|
|
690 GList *
|
|
691 input_scan_dir(const gchar * path)
|
|
692 {
|
|
693 GList *node, *result = NULL;
|
|
694 InputPlugin *ip;
|
|
695 gchar *path_proxy;
|
|
696
|
|
697 g_return_val_if_fail(path != NULL, NULL);
|
|
698
|
|
699 if (*path == '/')
|
|
700 while (path[1] == '/')
|
|
701 path++;
|
|
702
|
|
703 path_proxy = g_strdup(path);
|
|
704
|
|
705 for (node = get_input_list(); node; node = g_list_next(node)) {
|
|
706 ip = INPUT_PLUGIN(node->data);
|
|
707
|
|
708 if (!ip)
|
|
709 continue;
|
|
710
|
|
711 if (!ip->scan_dir)
|
|
712 continue;
|
|
713
|
|
714 if (!input_is_enabled(ip->filename))
|
|
715 continue;
|
|
716
|
|
717 if ((result = ip->scan_dir(path_proxy)))
|
|
718 break;
|
|
719 }
|
|
720
|
|
721 g_free(path_proxy);
|
|
722
|
|
723 return result;
|
|
724 }
|
|
725
|
|
726 void
|
|
727 input_get_volume(gint * l, gint * r)
|
|
728 {
|
|
729 *l = -1;
|
|
730 *r = -1;
|
|
731 if (playback_get_playing()) {
|
|
732 if (get_current_input_plugin() &&
|
|
733 get_current_input_plugin()->get_volume) {
|
|
734 get_current_input_plugin()->get_volume(l, r);
|
|
735 return;
|
|
736 }
|
|
737 }
|
|
738 output_get_volume(l, r);
|
|
739 }
|
|
740
|
|
741 void
|
|
742 input_set_volume(gint l, gint r)
|
|
743 {
|
|
744 if (playback_get_playing()) {
|
|
745 if (get_current_input_plugin() &&
|
|
746 get_current_input_plugin()->set_volume) {
|
|
747 get_current_input_plugin()->set_volume(l, r);
|
|
748 return;
|
|
749 }
|
|
750 }
|
|
751 output_set_volume(l, r);
|
|
752 }
|
|
753
|
|
754 void
|
|
755 input_update_vis(gint time)
|
|
756 {
|
|
757 GList *node;
|
|
758 VisNode *vis = NULL, *visnext = NULL;
|
|
759 gboolean found = FALSE;
|
|
760
|
|
761 G_LOCK(vis_mutex);
|
|
762 node = vis_list;
|
|
763 while (g_list_next(node) && !found) {
|
|
764 visnext = g_list_next(node)->data;
|
|
765 vis = node->data;
|
|
766
|
|
767 if (vis->time >= time)
|
|
768 break;
|
|
769
|
|
770 vis_list = g_list_delete_link(vis_list, node);
|
|
771
|
|
772 if (visnext->time >= time) {
|
|
773 found = TRUE;
|
|
774 break;
|
|
775 }
|
|
776 g_free(vis);
|
|
777 node = vis_list;
|
|
778 }
|
|
779 G_UNLOCK(vis_mutex);
|
|
780
|
|
781 if (found) {
|
|
782 vis_send_data(vis->data, vis->nch, vis->length);
|
|
783 g_free(vis);
|
|
784 }
|
|
785 else
|
|
786 vis_send_data(NULL, 0, 0);
|
|
787 }
|
|
788
|
|
789
|
|
790 gchar *
|
|
791 input_get_info_text(void)
|
|
792 {
|
|
793 return g_strdup(input_info_text);
|
|
794 }
|
|
795
|
|
796 void
|
|
797 input_set_info_text(const gchar * text)
|
|
798 {
|
|
799 g_free(input_info_text);
|
|
800 input_info_text = g_strdup(text);
|
|
801 mainwin_set_info_text();
|
|
802 }
|
|
803
|
|
804 void
|
|
805 input_set_status_buffering(gboolean status)
|
|
806 {
|
|
807 if (!playback_get_playing())
|
|
808 return;
|
|
809
|
|
810 if (!get_current_input_plugin())
|
|
811 return;
|
|
812
|
|
813 ip_data.buffering = status;
|
|
814
|
|
815 g_return_if_fail(mainwin_playstatus != NULL);
|
|
816
|
|
817 if (ip_data.buffering == TRUE && mainwin_playstatus != NULL && mainwin_playstatus->ps_status == STATUS_STOP)
|
|
818 mainwin_playstatus->ps_status = STATUS_PLAY;
|
|
819
|
|
820 playstatus_set_status_buffering(mainwin_playstatus, ip_data.buffering);
|
|
821 }
|
|
822
|
|
823 void
|
|
824 input_about(gint index)
|
|
825 {
|
|
826 InputPlugin *ip;
|
|
827
|
|
828 ip = g_list_nth(ip_data.input_list, index)->data;
|
|
829 if (ip && ip->about)
|
|
830 ip->about();
|
|
831 }
|
|
832
|
|
833 void
|
|
834 input_configure(gint index)
|
|
835 {
|
|
836 InputPlugin *ip;
|
|
837
|
|
838 ip = g_list_nth(ip_data.input_list, index)->data;
|
|
839 if (ip && ip->configure)
|
|
840 ip->configure();
|
|
841 }
|