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