Mercurial > audlegacy
annotate src/audacious/input.c @ 4782:792338a0f6ce
Replace g_strncasecmp with g_ascii_strncasecmp.
| author | Tony Vroon <chainsaw@gentoo.org> |
|---|---|
| date | Fri, 26 Sep 2008 21:57:28 +0100 |
| parents | 1f03f17e263e |
| children | 9b9bcf252a10 |
| rev | line source |
|---|---|
| 2313 | 1 /* Audacious - Cross-platform multimedia player |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
2 * Copyright (C) 2005-2008 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 | |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
26 /* #define AUD_DEBUG */ |
|
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
27 |
| 2313 | 28 #ifdef HAVE_CONFIG_H |
| 29 # include "config.h" | |
| 30 #endif | |
| 31 | |
| 32 #include <glib.h> | |
| 33 #include <glib/gi18n.h> | |
| 34 #include <gtk/gtk.h> | |
| 35 #include <string.h> | |
| 36 | |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
37 #include <mowgli.h> |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
38 |
| 2313 | 39 #include "fft.h" |
| 40 #include "input.h" | |
| 41 #include "main.h" | |
| 42 #include "output.h" | |
| 43 #include "playback.h" | |
| 44 #include "pluginenum.h" | |
| 2420 | 45 #include "strings.h" |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
46 #include "tuple.h" |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
47 #include "tuple_formatter.h" |
| 2420 | 48 #include "util.h" |
| 49 #include "visualization.h" | |
| 2505 | 50 #include "hook.h" |
| 2313 | 51 |
|
2347
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
52 #include "vfs.h" |
|
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
53 #include "vfs_buffer.h" |
|
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
54 #include "vfs_buffered_file.h" |
|
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
55 |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
56 #include "libSAD.h" |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
57 |
| 2313 | 58 G_LOCK_DEFINE_STATIC(vis_mutex); |
| 59 | |
| 60 InputPluginData ip_data = { | |
| 61 NULL, | |
| 62 NULL, | |
| 63 FALSE, | |
| 64 FALSE, | |
| 65 FALSE, | |
| 66 NULL | |
| 67 }; | |
| 68 | |
| 69 static GList *vis_list = NULL; | |
| 3977 | 70 static int volume_l = -1, volume_r = -1; |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
71 static SAD_dither_t *sad_state = NULL; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
72 static gint sad_nch = -1; |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
73 static AFormat sad_fmt = -1; |
| 2313 | 74 |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
75 InputPlayback * |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
76 get_current_input_playback(void) |
| 2313 | 77 { |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
78 return ip_data.current_input_playback; |
| 2313 | 79 } |
| 80 | |
| 81 void | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
82 set_current_input_playback(InputPlayback * ip) |
| 2313 | 83 { |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
84 ip_data.current_input_playback = ip; |
| 2313 | 85 } |
| 86 | |
| 87 GList * | |
| 88 get_input_list(void) | |
| 89 { | |
| 90 return ip_data.input_list; | |
| 91 } | |
| 92 | |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
93 /* |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
94 * TODO: move this to utility as something like |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
95 * plugin_generate_list(GList *plugin_list, gboolean enabled_state) |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
96 * |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
97 * -nenolod |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
98 */ |
| 2313 | 99 gchar * |
| 100 input_stringify_disabled_list(void) | |
| 101 { | |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
102 GList *node; |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
103 GString *list = g_string_new(""); |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
104 |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
105 MOWGLI_ITER_FOREACH(node, ip_data.input_list) |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
106 { |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
107 Plugin *plugin = (Plugin *) node->data; |
|
4098
fe0f7a72facd
Fix memory leak in input_stringify_disabled_list() (Bugzilla #25)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4094
diff
changeset
|
108 gchar *filename; |
| 2313 | 109 |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
110 if (plugin->enabled) |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
111 continue; |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
112 |
|
4098
fe0f7a72facd
Fix memory leak in input_stringify_disabled_list() (Bugzilla #25)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4094
diff
changeset
|
113 filename = g_path_get_basename(plugin->filename); |
|
fe0f7a72facd
Fix memory leak in input_stringify_disabled_list() (Bugzilla #25)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4094
diff
changeset
|
114 |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
115 if (list->len > 0) |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
116 g_string_append(list, ":"); |
| 2313 | 117 |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
118 g_string_append(list, filename); |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
119 g_free(filename); |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
120 } |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
121 |
|
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
122 return g_string_free(list, FALSE); |
| 2313 | 123 } |
| 124 | |
| 125 void | |
| 126 free_vis_data(void) | |
| 127 { | |
|
3516
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
128 GList *iter; |
|
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
129 |
| 2313 | 130 G_LOCK(vis_mutex); |
|
3516
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
131 |
|
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
132 MOWGLI_ITER_FOREACH(iter, vis_list) |
|
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
133 g_slice_free(VisNode, iter->data); |
|
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
134 |
| 2313 | 135 g_list_free(vis_list); |
| 136 vis_list = NULL; | |
|
3516
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
137 |
| 2313 | 138 G_UNLOCK(vis_mutex); |
| 139 } | |
| 140 | |
| 141 InputVisType | |
| 142 input_get_vis_type() | |
| 143 { | |
| 144 return INPUT_VIS_OFF; | |
| 145 } | |
| 146 | |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
147 static SAD_dither_t* |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
148 init_sad(AFormat fmt, gint nch) |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
149 { |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
150 gint ret; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
151 |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
152 SAD_buffer_format in, out; |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
153 in.sample_format = sadfmt_from_afmt(fmt); |
|
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
154 in.fracbits = FMT_FRACBITS(fmt); |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
155 in.channels = nch; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
156 in.channels_order = SAD_CHORDER_INTERLEAVED; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
157 in.samplerate = 0; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
158 |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
159 out.sample_format = SAD_SAMPLE_S16; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
160 out.fracbits = 0; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
161 out.channels = nch; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
162 out.channels_order = SAD_CHORDER_SEPARATED; /* sic! --asphyx */ |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
163 out.samplerate = 0; |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
164 |
|
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
165 AUDDBG("fmt=%d, nch=%d\n", fmt, nch); |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
166 SAD_dither_t *state = SAD_dither_init(&in, &out, &ret); |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
167 if (state != NULL) SAD_dither_set_dither(state, FALSE); |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
168 return state; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
169 } |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
170 |
| 2313 | 171 void |
| 172 input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, gpointer ptr) | |
| 173 { | |
|
4727
b53704474dd4
Disable visualization subsystem because it memory leaks like a sieve without the legacy UI in place.
William Pitcock <nenolod@atheme.org>
parents:
4650
diff
changeset
|
174 #if 0 |
| 2313 | 175 VisNode *vis_node; |
| 176 gint max; | |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
177 |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
178 if (nch > 2) return; |
| 2313 | 179 |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
180 if (sad_state == NULL || nch != sad_nch || fmt != sad_fmt) { |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
181 if(sad_state != NULL) SAD_dither_free(sad_state); |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
182 sad_state = init_sad(fmt, nch); |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
183 if(sad_state == NULL) return; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
184 sad_nch = nch; |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
185 sad_fmt = fmt; |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
186 } |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
187 |
|
4323
04ade98fafa3
vis moved to separate flow. works in passthrough mode too
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4266
diff
changeset
|
188 max = length / nch / FMT_SIZEOF(fmt); |
| 2313 | 189 max = CLAMP(max, 0, 512); |
| 190 | |
|
3516
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
191 vis_node = g_slice_new0(VisNode); |
| 2313 | 192 vis_node->time = time; |
| 193 vis_node->nch = nch; | |
| 194 vis_node->length = max; | |
|
4259
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
195 |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
196 gint16 *tmp[2]; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
197 |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
198 tmp[0] = vis_node->data[0]; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
199 tmp[1] = vis_node->data[1]; |
|
92642f860860
- added template for src_flow
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
4232
diff
changeset
|
200 SAD_dither_process_buffer(sad_state, ptr, tmp, max); |
| 2313 | 201 |
| 202 G_LOCK(vis_mutex); | |
| 203 vis_list = g_list_append(vis_list, vis_node); | |
| 204 G_UNLOCK(vis_mutex); | |
|
4727
b53704474dd4
Disable visualization subsystem because it memory leaks like a sieve without the legacy UI in place.
William Pitcock <nenolod@atheme.org>
parents:
4650
diff
changeset
|
205 #endif |
| 2313 | 206 } |
| 207 | |
| 208 void | |
| 209 input_dont_show_warning(GtkObject * object, gpointer user_data) | |
| 210 { | |
| 211 *((gboolean *) user_data) = | |
| 212 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object)); | |
| 213 } | |
| 214 | |
|
3133
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
215 static time_t |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
216 input_get_mtime(const gchar *filename) |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
217 { |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
218 struct stat buf; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
219 gint rv; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
220 gchar *realfn = NULL; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
221 |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
222 /* stat() does not accept file:// --yaz */ |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
223 realfn = g_filename_from_uri(filename, NULL, NULL); |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
224 rv = stat(realfn ? realfn : filename, &buf); |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
225 g_free(realfn); realfn = NULL; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
226 |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
227 if (rv == 0) { |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
228 return buf.st_mtime; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
229 } else { |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
230 return 0; //error |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
231 } |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
232 } |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
233 |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
234 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
235 /* do actual probing. this function is called from input_check_file() */ |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
236 static ProbeResult * |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
237 input_do_check_file(InputPlugin *ip, VFSFile *fd, gchar *filename_proxy, gboolean loading) |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
238 { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
239 ProbeResult *pr = NULL; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
240 gint result = 0; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
241 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
242 g_return_val_if_fail(fd != NULL, NULL); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
243 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
244 vfs_rewind(fd); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
245 |
|
3963
572258c68dfb
- for input plugins which provide probe_for_tuple only, now input_do_check_file() calls probe_for_tuple regardless of cfg.use_pl_metadata.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3959
diff
changeset
|
246 /* some input plugins provide probe_for_tuple() only. */ |
|
572258c68dfb
- for input plugins which provide probe_for_tuple only, now input_do_check_file() calls probe_for_tuple regardless of cfg.use_pl_metadata.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3959
diff
changeset
|
247 if ( (ip->probe_for_tuple && !ip->is_our_file_from_vfs && !ip->is_our_file) || |
|
3979
67f01143e613
improve on-demand probing:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3977
diff
changeset
|
248 (ip->probe_for_tuple && ip->have_subtune == TRUE) || |
|
3963
572258c68dfb
- for input plugins which provide probe_for_tuple only, now input_do_check_file() calls probe_for_tuple regardless of cfg.use_pl_metadata.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3959
diff
changeset
|
249 (ip->probe_for_tuple && (cfg.use_pl_metadata && (!loading || (loading && cfg.get_info_on_load)))) ) { |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
250 |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
251 plugin_set_current((Plugin *)ip); |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
252 Tuple *tuple = ip->probe_for_tuple(filename_proxy, fd); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
253 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
254 if (tuple != NULL) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
255 pr = g_new0(ProbeResult, 1); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
256 pr->ip = ip; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
257 pr->tuple = tuple; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
258 tuple_associate_int(pr->tuple, FIELD_MTIME, NULL, input_get_mtime(filename_proxy)); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
259 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
260 return pr; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
261 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
262 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
263 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
264 else if (ip->is_our_file_from_vfs != NULL) { |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
265 plugin_set_current((Plugin *)ip); |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
266 result = ip->is_our_file_from_vfs(filename_proxy, fd); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
267 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
268 if (result > 0) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
269 pr = g_new0(ProbeResult, 1); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
270 pr->ip = ip; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
271 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
272 return pr; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
273 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
274 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
275 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
276 else if (ip->is_our_file != NULL) { |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
277 plugin_set_current((Plugin *)ip); |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
278 result = ip->is_our_file(filename_proxy); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
279 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
280 if (result > 0) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
281 pr = g_new0(ProbeResult, 1); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
282 pr->ip = ip; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
283 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
284 return pr; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
285 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
286 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
287 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
288 return NULL; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
289 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
290 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
291 |
| 2313 | 292 /* |
| 293 * input_check_file() | |
| 294 * | |
| 295 * Inputs: | |
| 296 * filename to check recursively against input plugins | |
| 297 * whether or not to show an error | |
| 298 * | |
| 299 * Outputs: | |
| 300 * pointer to input plugin which can handle this file | |
| 301 * otherwise, NULL | |
| 302 * | |
| 303 * (the previous code returned a boolean of whether or not we can | |
| 304 * play the file... even WORSE for performance) | |
| 305 * | |
| 306 * Side Effects: | |
| 307 * various input plugins open the file and probe it | |
| 308 * -- this can have very ugly effects performance wise on streams | |
| 309 * | |
| 310 * --nenolod, Dec 31 2005 | |
| 311 * | |
| 312 * Rewritten to use NewVFS probing, semantics are still basically the same. | |
| 313 * | |
| 314 * --nenolod, Dec 5 2006 | |
| 315 * | |
| 316 * Adapted to use the NewVFS extension probing system if enabled. | |
| 317 * | |
| 318 * --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
|
319 * |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
320 * 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
|
321 * |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
322 * --nenolod, Jul 9 2007 |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
323 * |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
324 * Adapted to return ProbeResult structure. |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
325 * |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
326 * --nenolod, Jul 20 2007 |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
327 * |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
328 * Make use of ext_hash to avoid full scan in input list. |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
329 * |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
330 * --yaz, Nov 16 2007 |
| 2313 | 331 */ |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
332 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
333 /* if loading is TRUE, tuple probing can be skipped as regards configuration. */ |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
334 ProbeResult * |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
335 input_check_file(const gchar *filename, gboolean loading) |
| 2313 | 336 { |
| 337 VFSFile *fd; | |
| 338 GList *node; | |
| 339 InputPlugin *ip; | |
| 340 gchar *filename_proxy; | |
| 341 gint ret = 1; | |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
342 gchar *ext, *tmp, *tmp_uri; |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
343 gboolean use_ext_filter = FALSE; |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
344 gchar *mimetype; |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
345 ProbeResult *pr = NULL; |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
346 GList **list_hdr = NULL; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
347 extern GHashTable *ext_hash; |
| 2313 | 348 |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
349 /* 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
|
350 tmp_uri = g_strdup(filename); |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
351 tmp = strrchr(tmp_uri, '?'); |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
352 |
|
3979
67f01143e613
improve on-demand probing:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3977
diff
changeset
|
353 if (tmp && g_ascii_isdigit(*(tmp + 1))) |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
354 *tmp = '\0'; |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
355 |
|
3979
67f01143e613
improve on-demand probing:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3977
diff
changeset
|
356 filename_proxy = g_strdup(tmp_uri); |
|
67f01143e613
improve on-demand probing:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3977
diff
changeset
|
357 g_free(tmp_uri); |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
358 |
|
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
359 /* Check for plugins with custom URI:// strings */ |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
360 /* cue:// cdda:// tone:// tact:// */ |
|
3979
67f01143e613
improve on-demand probing:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3977
diff
changeset
|
361 if ((ip = uri_get_plugin(filename_proxy)) != NULL && ip->enabled) { |
|
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
362 if (ip->is_our_file != NULL) |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
363 { |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
364 plugin_set_current((Plugin *)ip); |
|
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
365 ret = ip->is_our_file(filename_proxy); |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
366 } |
|
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
367 else |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
368 ret = 0; |
|
3979
67f01143e613
improve on-demand probing:
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3977
diff
changeset
|
369 if (ret > 0) { |
|
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
370 g_free(filename_proxy); |
|
3517
b747ad540903
proberesult = use g_new0() for now still
William Pitcock <nenolod@atheme.org>
parents:
3516
diff
changeset
|
371 pr = g_new0(ProbeResult, 1); |
|
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
372 pr->ip = ip; |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
373 return pr; |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
374 } |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
375 g_free(filename_proxy); |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
376 return NULL; |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
377 } |
|
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
378 |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
379 |
|
4777
1f03f17e263e
Buffered VFS file routies do not handle mixed seeks and reads/writes
Matti Hamalainen <ccr@tnsp.org>
parents:
4762
diff
changeset
|
380 /* open the file with vfs sub-system |
|
1f03f17e263e
Buffered VFS file routies do not handle mixed seeks and reads/writes
Matti Hamalainen <ccr@tnsp.org>
parents:
4762
diff
changeset
|
381 * FIXME! XXX! buffered VFS file does not handle mixed seeks and reads/writes |
|
1f03f17e263e
Buffered VFS file routies do not handle mixed seeks and reads/writes
Matti Hamalainen <ccr@tnsp.org>
parents:
4762
diff
changeset
|
382 * correctly! As a temporary workaround, switching to unbuffered ... -ccr |
|
1f03f17e263e
Buffered VFS file routies do not handle mixed seeks and reads/writes
Matti Hamalainen <ccr@tnsp.org>
parents:
4762
diff
changeset
|
383 */ |
|
1f03f17e263e
Buffered VFS file routies do not handle mixed seeks and reads/writes
Matti Hamalainen <ccr@tnsp.org>
parents:
4762
diff
changeset
|
384 //fd = vfs_buffered_file_new_from_uri(filename_proxy); |
|
1f03f17e263e
Buffered VFS file routies do not handle mixed seeks and reads/writes
Matti Hamalainen <ccr@tnsp.org>
parents:
4762
diff
changeset
|
385 fd = vfs_fopen(filename_proxy, "rb"); |
| 2313 | 386 |
|
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
387 if (!fd) { |
| 3125 | 388 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
|
389 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
|
390 return NULL; |
|
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
391 } |
|
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
392 |
| 2313 | 393 |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
394 // apply mimetype check. note that stdio does not support mimetype check. |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
395 mimetype = vfs_get_metadata(fd, "content-type"); |
|
4539
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
396 if (mimetype) { |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
397 ip = mime_get_plugin(mimetype); |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
398 g_free(mimetype); |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
399 } else |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
400 ip = NULL; |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
401 |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
402 if (ip && ip->enabled) { |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
403 pr = input_do_check_file(ip, fd, filename_proxy, loading); |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
404 if (pr) { |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
405 g_free(filename_proxy); |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
406 vfs_fclose(fd); |
|
8c2a166168dd
Fix a theoretical infinite loop: if plugin matches a mime-type, but probe
Matti Hamalainen <ccr@tnsp.org>
parents:
4345
diff
changeset
|
407 return pr; |
|
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
408 } |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
409 } |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
410 |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
411 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
412 // apply ext_hash check |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
413 if(cfg.use_extension_probing) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
414 use_ext_filter = |
|
4782
792338a0f6ce
Replace g_strncasecmp with g_ascii_strncasecmp.
Tony Vroon <chainsaw@gentoo.org>
parents:
4777
diff
changeset
|
415 (fd && (!g_ascii_strncasecmp(filename_proxy, "/", 1) || |
|
792338a0f6ce
Replace g_strncasecmp with g_ascii_strncasecmp.
Tony Vroon <chainsaw@gentoo.org>
parents:
4777
diff
changeset
|
416 !g_ascii_strncasecmp(filename_proxy, "file://", 7))) ? TRUE : FALSE; |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
417 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
418 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
419 if(use_ext_filter) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
420 gchar *base, *lext; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
421 gchar *tmp2 = g_filename_from_uri(filename_proxy, NULL, NULL); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
422 gchar *realfn = g_strdup(tmp2 ? tmp2 : filename_proxy); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
423 g_free(tmp2); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
424 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
425 base = g_path_get_basename(realfn); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
426 g_free(realfn); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
427 ext = strrchr(base, '.'); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
428 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
429 if(ext) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
430 lext = g_ascii_strdown(ext+1, -1); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
431 list_hdr = g_hash_table_lookup(ext_hash, lext); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
432 g_free(lext); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
433 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
434 g_free(base); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
435 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
436 if(list_hdr) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
437 for(node = *list_hdr; node != NULL; node = g_list_next(node)) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
438 ip = INPUT_PLUGIN(node->data); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
439 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
440 if (!ip || !ip->enabled) |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
441 continue; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
442 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
443 pr = input_do_check_file(ip, fd, filename_proxy, loading); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
444 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
445 if(pr) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
446 g_free(filename_proxy); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
447 vfs_fclose(fd); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
448 return pr; |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
449 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
450 } |
|
4208
e8c79a8b9d9b
Backed out changeset d0b2d8d4e955
William Pitcock <nenolod@atheme.org>
parents:
4156
diff
changeset
|
451 } |
|
4156
a2da130cdafa
If no plugins claim that they can support a file extension, try them all just to be sure. (Bugzilla #80)
Jack Kelly <weldingmaskman@hotmail.com>
parents:
4153
diff
changeset
|
452 |
|
4208
e8c79a8b9d9b
Backed out changeset d0b2d8d4e955
William Pitcock <nenolod@atheme.org>
parents:
4156
diff
changeset
|
453 g_free(filename_proxy); |
|
e8c79a8b9d9b
Backed out changeset d0b2d8d4e955
William Pitcock <nenolod@atheme.org>
parents:
4156
diff
changeset
|
454 vfs_fclose(fd); |
|
e8c79a8b9d9b
Backed out changeset d0b2d8d4e955
William Pitcock <nenolod@atheme.org>
parents:
4156
diff
changeset
|
455 return NULL; // no plugin found. |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
456 } |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
457 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
458 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
459 // do full scan when extension match isn't specified. |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
460 for (node = get_input_list(); node != NULL; node = g_list_next(node)) { |
| 2313 | 461 ip = INPUT_PLUGIN(node->data); |
| 462 | |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
463 if (!ip || !ip->enabled) |
| 2313 | 464 continue; |
| 465 | |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
466 pr = input_do_check_file(ip, fd, filename_proxy, loading); |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
467 |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
468 if(pr) { |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
469 g_free(filename_proxy); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
470 vfs_fclose(fd); |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
471 return pr; |
| 2313 | 472 } |
| 473 } | |
| 474 | |
|
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
475 |
|
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3517
diff
changeset
|
476 // all probing failed. return NULL |
| 2313 | 477 g_free(filename_proxy); |
| 478 vfs_fclose(fd); | |
| 479 return NULL; | |
| 480 } | |
| 481 | |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
482 Tuple * |
| 2313 | 483 input_get_song_tuple(const gchar * filename) |
| 484 { | |
| 485 InputPlugin *ip = NULL; | |
| 4153 | 486 Tuple *input = NULL; |
|
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
|
487 gchar *ext = NULL; |
| 2313 | 488 gchar *filename_proxy; |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
489 ProbeResult *pr; |
| 2313 | 490 |
| 491 if (filename == NULL) | |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
492 return NULL; |
| 2313 | 493 |
| 494 filename_proxy = g_strdup(filename); | |
| 495 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
496 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
497 |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
498 if (!pr) { |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
499 g_free(filename_proxy); |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
500 return NULL; |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
501 } |
|
3127
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 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
504 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
505 g_free(pr); |
| 2313 | 506 |
| 2331 | 507 if (ip && ip->get_song_tuple) |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
508 { |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
509 plugin_set_current((Plugin *)ip); |
| 2313 | 510 input = ip->get_song_tuple(filename_proxy); |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
511 } |
| 2331 | 512 else |
| 513 { | |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
514 gchar *scratch; |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
515 |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
516 scratch = uri_to_display_basename(filename); |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
517 tuple_associate_string(input, FIELD_FILE_NAME, NULL, scratch); |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
518 g_free(scratch); |
| 2313 | 519 |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
520 scratch = uri_to_display_dirname(filename); |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
521 tuple_associate_string(input, FIELD_FILE_PATH, NULL, scratch); |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
522 g_free(scratch); |
| 2313 | 523 |
|
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
524 ext = strrchr(filename, '.'); |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
525 if (ext != NULL) { |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
526 ++ext; |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
527 tuple_associate_string(input, FIELD_FILE_EXT, NULL, ext); |
|
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4029
diff
changeset
|
528 } |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
529 |
|
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
530 tuple_associate_int(input, FIELD_LENGTH, NULL, -1); |
| 2313 | 531 } |
| 532 | |
| 2569 | 533 g_free(filename_proxy); |
| 2313 | 534 return input; |
| 535 } | |
| 536 | |
| 537 static void | |
| 538 input_general_file_info_box(const gchar * filename, InputPlugin * ip) | |
| 539 { | |
| 540 GtkWidget *window, *vbox; | |
| 541 GtkWidget *label, *filename_hbox, *filename_entry; | |
| 542 GtkWidget *bbox, *cancel; | |
| 543 | |
| 544 gchar *title, *fileinfo, *basename, *iplugin; | |
| 545 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
|
546 gchar *realfn = NULL; |
| 2313 | 547 |
| 548 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 549 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
| 550 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); | |
| 551 | |
|
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
552 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
|
553 basename = g_path_get_basename(realfn ? realfn : filename); |
| 2313 | 554 fileinfo = filename_to_utf8(basename); |
| 555 title = g_strdup_printf(_("audacious: %s"), fileinfo); | |
| 556 | |
| 557 gtk_window_set_title(GTK_WINDOW(window), title); | |
| 558 | |
| 559 g_free(title); | |
| 560 g_free(fileinfo); | |
| 561 g_free(basename); | |
| 562 | |
| 563 gtk_container_set_border_width(GTK_CONTAINER(window), 10); | |
| 564 | |
| 565 vbox = gtk_vbox_new(FALSE, 10); | |
| 566 gtk_container_add(GTK_CONTAINER(window), vbox); | |
| 567 | |
| 568 filename_hbox = gtk_hbox_new(FALSE, 5); | |
| 569 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0); | |
| 570 | |
| 571 label = gtk_label_new(_("Filename:")); | |
| 572 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0); | |
| 573 | |
| 574 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
|
575 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
|
576 g_free(realfn); realfn = NULL; |
| 2313 | 577 |
| 578 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8); | |
| 579 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE); | |
| 580 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0); | |
| 581 | |
| 582 g_free(filename_utf8); | |
| 583 | |
| 584 if (ip) | |
| 585 if (ip->description) | |
| 586 iplugin = ip->description; | |
| 587 else | |
| 588 iplugin = ip->filename; | |
| 589 else | |
| 590 iplugin = _("No input plugin recognized this file"); | |
| 591 | |
| 592 title = g_strdup_printf(_("Input plugin: %s"), iplugin); | |
| 593 | |
| 594 label = gtk_label_new(title); | |
| 595 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 596 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
| 597 g_free(title); | |
| 598 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0); | |
| 599 | |
| 600 bbox = gtk_hbutton_box_new(); | |
| 601 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
| 602 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
| 603 | |
| 604 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
| 605 g_signal_connect_swapped(G_OBJECT(cancel), "clicked", | |
| 606 GTK_SIGNAL_FUNC(gtk_widget_destroy), | |
| 607 GTK_OBJECT(window)); | |
| 608 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
| 609 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
| 610 | |
| 611 gtk_widget_show_all(window); | |
| 612 } | |
| 613 | |
| 614 void | |
| 615 input_file_info_box(const gchar * filename) | |
| 616 { | |
| 617 InputPlugin *ip; | |
| 618 gchar *filename_proxy; | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
619 ProbeResult *pr; |
| 2313 | 620 |
| 621 filename_proxy = g_strdup(filename); | |
| 622 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
623 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
624 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
625 if (!pr) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
626 return; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
627 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
628 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
629 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
630 g_free(pr); |
| 2313 | 631 |
| 632 if (ip->file_info_box) | |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
633 { |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
634 plugin_set_current((Plugin *)ip); |
| 2313 | 635 ip->file_info_box(filename_proxy); |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
636 } |
| 2313 | 637 else |
| 638 input_general_file_info_box(filename, ip); | |
| 639 | |
| 640 input_general_file_info_box(filename, NULL); | |
| 641 g_free(filename_proxy); | |
| 642 } | |
| 643 | |
| 644 GList * | |
| 645 input_scan_dir(const gchar * path) | |
| 646 { | |
| 647 GList *node, *result = NULL; | |
| 648 InputPlugin *ip; | |
| 649 gchar *path_proxy; | |
| 650 | |
| 651 g_return_val_if_fail(path != NULL, NULL); | |
| 652 | |
| 653 if (*path == '/') | |
| 654 while (path[1] == '/') | |
| 655 path++; | |
| 656 | |
| 657 path_proxy = g_strdup(path); | |
| 658 | |
| 659 for (node = get_input_list(); node; node = g_list_next(node)) { | |
| 660 ip = INPUT_PLUGIN(node->data); | |
| 661 | |
| 662 if (!ip) | |
| 663 continue; | |
| 664 | |
| 665 if (!ip->scan_dir) | |
| 666 continue; | |
| 667 | |
|
3437
3092a8b3fe34
Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents:
3416
diff
changeset
|
668 if (!ip->enabled) |
| 2313 | 669 continue; |
| 670 | |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
671 plugin_set_current((Plugin *)ip); |
| 2313 | 672 if ((result = ip->scan_dir(path_proxy))) |
| 673 break; | |
| 674 } | |
| 675 | |
| 676 g_free(path_proxy); | |
| 677 | |
| 678 return result; | |
| 679 } | |
| 680 | |
| 681 void | |
| 682 input_get_volume(gint * l, gint * r) | |
| 683 { | |
| 3977 | 684 if (volume_l == -1 || volume_r == -1) |
| 685 output_get_volume(&volume_l, &volume_r); | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
686 |
| 3977 | 687 *l = volume_l; |
| 688 *r = volume_r; | |
| 2313 | 689 } |
| 690 | |
| 691 void | |
| 692 input_set_volume(gint l, gint r) | |
| 693 { | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
694 InputPlayback *playback; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
695 |
| 2505 | 696 gint h_vol[2]; |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
697 |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
698 h_vol[0] = l; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
699 h_vol[1] = r; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
700 hook_call("volume set", h_vol); |
|
4587
ab8bc8a89a52
remove ui_main_set_initial_volume, call volume set hook instead
Tomasz Mon <desowin@gmail.com>
parents:
4581
diff
changeset
|
701 |
|
4266
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
702 if (playback_get_playing()) |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
703 if ((playback = get_current_input_playback()) != NULL) |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
704 if (playback->plugin->set_volume != NULL) |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
705 { |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
706 plugin_set_current((Plugin *)(playback->plugin)); |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
707 if (playback->plugin->set_volume(l, r)) |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
708 return; |
|
2b7a74fce100
Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
stefano@zanga
parents:
4259
diff
changeset
|
709 } |
| 2569 | 710 |
| 2313 | 711 output_set_volume(l, r); |
| 3977 | 712 |
| 713 volume_l = l; | |
| 714 volume_r = r; | |
| 2313 | 715 } |
| 716 | |
| 717 void | |
| 718 input_update_vis(gint time) | |
| 719 { | |
| 720 GList *node; | |
| 721 VisNode *vis = NULL, *visnext = NULL; | |
| 722 gboolean found = FALSE; | |
| 723 | |
| 724 G_LOCK(vis_mutex); | |
| 725 node = vis_list; | |
| 726 while (g_list_next(node) && !found) { | |
| 727 visnext = g_list_next(node)->data; | |
| 728 vis = node->data; | |
| 729 | |
| 730 if (vis->time >= time) | |
| 731 break; | |
| 732 | |
| 733 vis_list = g_list_delete_link(vis_list, node); | |
| 734 | |
| 735 if (visnext->time >= time) { | |
| 736 found = TRUE; | |
| 737 break; | |
| 738 } | |
| 739 g_free(vis); | |
| 740 node = vis_list; | |
| 741 } | |
| 742 G_UNLOCK(vis_mutex); | |
| 743 | |
| 744 if (found) { | |
| 745 vis_send_data(vis->data, vis->nch, vis->length); | |
|
4596
a77d02342ee1
change visualization timeout; export calc_stereo_pcm, calc_mono_pcm and calc_mono_freq to PAPI
Tomasz Mon <desowin@gmail.com>
parents:
4587
diff
changeset
|
746 hook_call("visualization timeout", vis); |
| 2313 | 747 g_free(vis); |
| 748 } | |
| 749 else | |
|
4596
a77d02342ee1
change visualization timeout; export calc_stereo_pcm, calc_mono_pcm and calc_mono_freq to PAPI
Tomasz Mon <desowin@gmail.com>
parents:
4587
diff
changeset
|
750 hook_call("visualization timeout", NULL); |
| 2313 | 751 } |
| 752 | |
|
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
753 /* 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
|
754 void |
|
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
755 input_set_info_text(gchar *text) |
| 2313 | 756 { |
|
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
757 gchar *title = g_strdup(text); |
|
4581
cf6711eeb12f
implement event_queue_with_data_free()
Tomasz Mon <desowin@gmail.com>
parents:
4539
diff
changeset
|
758 event_queue_with_data_free("title change", title); |
| 2313 | 759 } |
