# HG changeset patch # User Ralf Ertzinger # Date 1198354758 -3600 # Node ID 05c9bec29aaa8da8d57140f15389af119279fdcb # Parent b71d8bee88826e75baa3d783e63430203d053111 - Prevent APE plugin from freaking out non-seekable streams diff -r b71d8bee8882 -r 05c9bec29aaa src/demac/plugin.c --- a/src/demac/plugin.c Fri Dec 21 12:17:25 2007 -0600 +++ b/src/demac/plugin.c Sat Dec 22 21:19:18 2007 +0100 @@ -305,6 +305,11 @@ Tuple *tpl = aud_tuple_new_from_filename(uri); gchar codec_string[32]; + if (aud_vfs_is_streaming(vfd)) { + /* This plugin does not support streams yet */ + return NULL; + } + mowgli_dictionary_t *tag = NULL; gchar *item; if ((tag = parse_apev2_tag(vfd)) != NULL) {