0729d33fae
OBS-URL: https://build.opensuse.org/package/show/multimedia:xine/xine-lib?expand=0&rev=8e3e31cf76a743b6f82ff8cd11a5de45
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
diff -ur xine-lib-1.1.19.orig/src/xine-engine/load_plugins.c xine-lib-1.1.19/src/xine-engine/load_plugins.c
|
|
--- xine-lib-1.1.19.orig/src/xine-engine/load_plugins.c 2010-03-09 23:17:05.000000000 +0100
|
|
+++ xine-lib-1.1.19/src/xine-engine/load_plugins.c 2010-07-26 01:24:26.098035179 +0200
|
|
@@ -2508,9 +2508,18 @@
|
|
|
|
plugin_catalog_t *catalog = self->plugin_catalog;
|
|
int list_id;
|
|
+ int havempgdecoder = 0;
|
|
+ const char * const * p;
|
|
|
|
pthread_mutex_lock (&catalog->lock);
|
|
|
|
+ _build_list_typed_plugins(&catalog, catalog->plugin_lists[PLUGIN_AUDIO_DECODER - 1]);
|
|
+ for (p = catalog->ids; p && *p; p++) {
|
|
+ if (strcmp (*p, "mad") == 0 || strcmp (*p, "ffmpegaudio") == 0) {
|
|
+ havempgdecoder = 1;
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
/* calc length of output string and create an array of strings to
|
|
concatenate */
|
|
size_t len = 0;
|
|
@@ -2522,7 +2531,13 @@
|
|
if (node->plugin_class || _load_plugin_class(self, node, NULL)) {
|
|
demux_class_t *const cls = (demux_class_t *)node->plugin_class;
|
|
if( (extensions[list_id] = cls->get_extensions(cls)) != NULL )
|
|
- len += strlen(extensions[list_id]) +1;
|
|
+ {
|
|
+ if(havempgdecoder || !strstr(extensions[list_id], "mp3")) {
|
|
+ len += strlen(extensions[list_id]) +1;
|
|
+ } else {
|
|
+ extensions[list_id] = NULL;
|
|
+ }
|
|
+ }
|
|
}
|
|
}
|
|
|