summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--playlist.c3
-rw-r--r--plugins/gtkui/callbacks.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/playlist.c b/playlist.c
index bc395e50..613e1554 100644
--- a/playlist.c
+++ b/playlist.c
@@ -1470,7 +1470,7 @@ plt_insert_file (playlist_t *playlist, playItem_t *after, const char *fname, int
else {
fn++;
}
-
+#if 0
// detect pls/m3u files
// they must be handled before checking for http://,
// so that remote playlist files referenced from other playlist files could
@@ -1482,6 +1482,7 @@ plt_insert_file (playlist_t *playlist, playItem_t *after, const char *fname, int
return plt_insert_pls (playlist, after, fname, pabort, cb, user_data);
}
+#endif
// add all posible streams as special-case:
// set decoder to NULL, and filetype to "content"
diff --git a/plugins/gtkui/callbacks.c b/plugins/gtkui/callbacks.c
index 6b314743..dfde0279 100644
--- a/plugins/gtkui/callbacks.c
+++ b/plugins/gtkui/callbacks.c
@@ -94,12 +94,14 @@ file_filter_func (const GtkFileFilterInfo *filter_info, gpointer data) {
}
}
}
+#if 0
if (!strcasecmp (p, "pls")) {
return TRUE;
}
if (!strcasecmp (p, "m3u")) {
return TRUE;
}
+#endif
// test container (vfs) formats
DB_vfs_t **vfsplugs = deadbeef->plug_get_vfs_list ();