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